0
0
Fork 0

Markup structure changes

This commit is contained in:
Tyler-A 2020-08-07 00:42:24 -06:00
parent 9b0261d47a
commit 997e6edb82
2 changed files with 20 additions and 6 deletions

View file

@ -19,8 +19,18 @@
<div class="title">{{ item.name }}</div>
<div class="subtitle">{{ genres }}</div>
</div>
<div class="popularity corner">{{ item.popularity }}</div>
<div class="followers corner">{{ item.followers.total.toLocaleString() }}</div>
<div
v-tooltip.auto="popularity_tooltip"
class="popularity corner"
>
{{ item.popularity }}
</div>
<div
v-tooltip.auto="followers_tooltip"
class="followers corner"
>
{{ item.followers.total.toLocaleString() }}
</div>
</div>
</template>