Version: 1.0.0
Install the package
npm install vue-paging-simple
Import the module in the place you want to use:
import SimplePaging from 'vue-paging-simple'
Wrap you content in this component:
<SimplePaging
:totals="200"
:limit="10"
:section="5"
v-model="currentPage"
/>
// display 10 line/page, 5 page/section
The following props are accepted:
Total record (Number)
Number data in page. Default 10
Number section in display. Default 5
Example: 1 2 3 4 5 > >>
Current page
MIT