Remove redundant .item elements

This commit is contained in:
An Phan 2016-03-23 21:04:41 +08:00
parent c2e04bc69b
commit e5778d1896
3 changed files with 0 additions and 14 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>