Skip to content

Commit

Permalink
Add more items, so that We can see the previous and next icons. (#635)
Browse files Browse the repository at this point in the history
In high resolution screens, 15 items is just not enough to get the previous and next items to show on this example. So by adding more elements, we'll be able to see them.
  • Loading branch information
0xDaksh authored and johnleider committed Oct 25, 2018
1 parent 490f8ba commit 64bb7c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/examples/tabs/icons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
>
<v-tabs-slider color="yellow"></v-tabs-slider>
<v-tab
v-for="i in 15"
v-for="i in 30"
:href="'#tab-' + i"
:key="i"
>
Expand All @@ -17,7 +17,7 @@

<v-tabs-items>
<v-tab-item
v-for="i in 15"
v-for="i in 30"
:id="'tab-' + i"
:key="i"
>
Expand Down

0 comments on commit 64bb7c0

Please sign in to comment.