Vue.component( `artist`, { props: [ `artist` ], computed: {}, template: `
{{artist.name}}
{{artist.genres.join(", ")}}
{{artist.popularity}}
{{artist.follower_count}}
` } )