client: move table items to a independent component

This commit is contained in:
geoffrey45
2022-01-11 01:36:04 +03:00
parent 17cbe14217
commit 521c195570
8 changed files with 138 additions and 99 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
<div>
<p id="title" class="ellipsis">{{ current.title }}</p>
<hr />
<div id="artist" v-if="current.artists[0] != ''">
<div id="artist" class="ellip" v-if="current.artists[0] != ''">
<span v-for="artist in putCommas(current.artists)" :key="artist">{{
artist
}}</span>
+2 -2
View File
@@ -11,9 +11,9 @@
}"
></div>
<div class="tags">
<p class="title">{{ next.title }}</p>
<p class="title ellip">{{ next.title }}</p>
<hr />
<p class="artist">
<p class="artist ellip">
<span v-for="artist in putCommas(next.artists)" :key="artist">{{
artist
}}</span>