A simple vue.js plugin to paginate data
npm install vue-paginate> This version only works with Vue 2.0. For Vue 1.0, check out the 1.0 branch.
The idea of vue-paginate is pretty simple. You give it an array of items; specify how many items per page; then get your list of items paginated!
```
npm install vue-paginate --save
You have two ways to setup vue-paginate:
#### CommonJS (Webpack/Browserify)
- ES6
`js`
import VuePaginate from 'vue-paginate'
Vue.use(VuePaginate)
- ES5
`js`
var VuePaginate = require('vue-paginate')
Vue.use(VuePaginate)
#### Include
Include it directly with a