Markup structure changes
This commit is contained in:
parent
9b0261d47a
commit
997e6edb82
2 changed files with 20 additions and 6 deletions
|
|
@ -19,8 +19,18 @@
|
||||||
<div class="title">{{ item.name }}</div>
|
<div class="title">{{ item.name }}</div>
|
||||||
<div class="subtitle">{{ genres }}</div>
|
<div class="subtitle">{{ genres }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="popularity corner">{{ item.popularity }}</div>
|
<div
|
||||||
<div class="followers corner">{{ item.followers.total.toLocaleString() }}</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>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,13 +22,17 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="popularity corner"
|
|
||||||
v-tooltip.auto="popularity_tooltip"
|
v-tooltip.auto="popularity_tooltip"
|
||||||
>{{ item.popularity }}</div>
|
class="popularity corner"
|
||||||
|
>
|
||||||
|
{{ item.popularity }}
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
class="duration corner"
|
|
||||||
v-tooltip.auto="duration_tooltip"
|
v-tooltip.auto="duration_tooltip"
|
||||||
>{{ duration }}</div>
|
class="duration corner"
|
||||||
|
>
|
||||||
|
{{ duration }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue