Skip to content

Instantly share code, notes, and snippets.

@Klerith
Created March 25, 2024 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Klerith/8160b6777ea10578b6b5a7551a6655ac to your computer and use it in GitHub Desktop.
Save Klerith/8160b6777ea10578b6b5a7551a6655ac to your computer and use it in GitHub Desktop.
Material para el ejercicio del curso de Vue.js
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