Make app function.
This commit is contained in:
parent
e4c81beefe
commit
af75bbc522
14 changed files with 865 additions and 0 deletions
14
components/artist.html
Normal file
14
components/artist.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<div class="artist">
|
||||
<div class="image profile_pic">
|
||||
<img :src="artist.image.url" :alt="artist.name + `'s profile picture`">
|
||||
</div>
|
||||
<div class="info">
|
||||
<span class="name">
|
||||
<a :href="artist.link" target="_blank" rel="noopener">{{artist.name}}</a>
|
||||
</span>
|
||||
<br>
|
||||
<span class="genres">{{artist.genres.join(", ")}}</span>
|
||||
</div>
|
||||
<div class="popularity">{{artist.popularity}}</div>
|
||||
<div class="followers">{{artist.follower_count}}</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue