vue-paginate
Advanced tools
Comparing version 1.1.1 to 1.2.0
{ | ||
"name": "vue-paginate", | ||
"version": "1.1.1", | ||
"version": "1.2.0", | ||
"description": "A simple vue.js plugin to paginate data", | ||
@@ -5,0 +5,0 @@ "main": "vue-paginate.js", |
@@ -131,1 +131,2 @@ # vue-paginate | ||
- `full[listName]`: The full version of the list (before slicing). | ||
- `current[listName]Page`: The current page of the list you're viewing (e.g. `currentLangsPage`). |
@@ -100,2 +100,4 @@ ;(function () { | ||
this.vm.$set('current' + helpers.capitalize(listName) + 'Page', state[listName].currentPage); | ||
var index = state[listName].currentPage * state[listName].perPage; | ||
@@ -102,0 +104,0 @@ |
9259
87
132