Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 5622380

Browse files
committed
fix($components): SimplePagination doesn't work
1 parent bd0a7bf commit 5622380

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<div id="pagination">
2-
<router-link v-if="$pagination.hasPrev" :to="$pagination.prevLink">Prev</router-link>
3-
<router-link v-if="$pagination.hasNext" :to="$pagination.nextLink">Next</router-link>
4-
</div>
1+
<template>
2+
<div id="pagination">
3+
<router-link v-if="$pagination.hasPrev" :to="$pagination.prevLink">Prev</router-link>
4+
<router-link v-if="$pagination.hasNext" :to="$pagination.nextLink">Next</router-link>
5+
</div>
6+
</template>

0 commit comments

Comments
 (0)