Level 6
If you haven't already, install the vuejs devtools extension. See if it tells you anything and report back.
Get the extension and docs here: https://github.com/vuejs/vue-devtools
1 like
Hi - I have been trying to add pagination to a table that is using Vue, I found a simple example that I have been attempting to build upon, however i works with Vue 0.11 but not with Vue 1.0
The two examples are below. Any recommendations appreciated.
This does not work with Vue 1.0.14 https://jsfiddle.net/ashleywnj/65n3yLeL/
This works with Vue 0.11.10 https://jsfiddle.net/os7hp1cy/11/
Thanks @stereoscience ... nice tool. So i missed an item in the fiddle - I had
v-for="pageNumber: totalPages">
changed it to
v-for="pageNumber in totalPages">
and it works ...
Please or to participate in this conversation.