Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 16, 2019 02:20
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 parzibyte/ca553253d9a418510ab964a159dc86fb to your computer and use it in GitHub Desktop.
Save parzibyte/ca553253d9a418510ab964a159dc86fb to your computer and use it in GitHub Desktop.
new Vue({
el: "#app",
data: () => ({
canciones: [
{
nombre: "Can I play with madness",
artista: "Iron Maiden"
},
{
nombre: "Stranger in town",
artista: "Toto"
},
{
nombre: "Shattered",
artista: "The Rolling Stones"
},
{
nombre: "Space Oddity",
artista: "David Bowie"
},
{
nombre: "Peppermint Twist",
artista: "Sweet"
},
],
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment