File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ module.exports = {
2323 } ,
2424
2525 template : '<ul class="pagination" v-if="data.total > data.per_page">\
26- <li v-if="data.prev_page_url">\
27- <a href="#" aria-label="Previous" @click.prevent="selectPage(--data.current_page)"><span aria-hidden="true">«</span></a>\
26+ <li class="page-item" v-if="data.prev_page_url">\
27+ <a class="page-link" href="#" aria-label="Previous" @click.prevent="selectPage(--data.current_page)"><span aria-hidden="true">«</span></a>\
2828 </li>\
29- <li v-for="n in getPages()" :class="{ \'active\': n == data.current_page }"><a href="#" @click.prevent="selectPage(n)">{{ n }}</a></li>\
30- <li v-if="data.next_page_url">\
31- <a href="#" aria-label="Next" @click.prevent="selectPage(++data.current_page)"><span aria-hidden="true">»</span></a>\
29+ <li class="page-item" v-for="n in getPages()" :class="{ \'active\': n == data.current_page }"><a class="page-link" href="#" @click.prevent="selectPage(n)">{{ n }}</a></li>\
30+ <li class="page-item" v-if="data.next_page_url">\
31+ <a class="page-link" href="#" aria-label="Next" @click.prevent="selectPage(++data.current_page)"><span aria-hidden="true">»</span></a>\
3232 </li>\
3333 </ul>' ,
3434
You can’t perform that action at this time.
0 commit comments