-
-
Save Cristian5c26l/39de173f0732211c77f931879d483c7d to your computer and use it in GitHub Desktop.
Material para el ejercicio del curso de Vue.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const heroes = [ | |
{ | |
id: 1, | |
name: 'Batman', | |
owner: 'DC' | |
}, | |
{ | |
id: 2, | |
name: 'Spiderman', | |
owner: 'Marvel' | |
}, | |
{ | |
id: 3, | |
name: 'Superman', | |
owner: 'DC' | |
}, | |
{ | |
id: 4, | |
name: 'Flash', | |
owner: 'DC' | |
}, | |
{ | |
id: 5, | |
name: 'Wolverine', | |
owner: 'Marvel' | |
}, | |
]; | |
export const owners = ['DC','Marvel']; | |
export default heroes; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment