mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
Remove redundant .item elements
This commit is contained in:
parent
c2e04bc69b
commit
e5778d1896
3 changed files with 0 additions and 14 deletions
|
@ -9,12 +9,6 @@
|
|||
| orderBy 'name'
|
||||
| filterBy q in 'name' 'artist.name'
|
||||
| limitBy numOfItems" :album="item"></album-item>
|
||||
|
||||
<!--
|
||||
Add several more items to make sure the last row is left-aligned.
|
||||
Credits: http://codepen.io/dalgard/pen/Dbnus
|
||||
-->
|
||||
<span class="item" v-for="n in 10"></span>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
|
|
@ -8,12 +8,6 @@
|
|||
<artist-item v-for="item in items
|
||||
| filterBy q in 'name'
|
||||
| limitBy numOfItems" :artist="item"></artist-item>
|
||||
|
||||
<!--
|
||||
Add several more items to make sure the last row is left-aligned.
|
||||
Credits: http://codepen.io/dalgard/pen/Dbnus
|
||||
-->
|
||||
<span class="item" v-for="n in 10"></span>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
|
|
@ -64,7 +64,6 @@
|
|||
|
||||
<div class="wrapper">
|
||||
<artist-item v-for="artist in topArtists" :artist="artist"></artist-item>
|
||||
<span class="item" v-for="n in 5"></span>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
@ -73,7 +72,6 @@
|
|||
|
||||
<div class="wrapper">
|
||||
<album-item v-for="album in topAlbums" :album="album"></album-item>
|
||||
<span class="item" v-for="n in 5"></span>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue