The query parameters are not passed to the backend in our project. So if you do any filtering/searching/paginating the data is not passed to the backend.
For the server-table, you have in your package.json:
"vue-resource": "^0.7.4"
We use: 0.9.1, which matches your requirement
If we change the following line in file: lib/methods/get-data.js
The query parameters are not passed to the backend in our project. So if you do any filtering/searching/paginating the data is not passed to the backend.
For the server-table, you have in your package.json: "vue-resource": "^0.7.4" We use: 0.9.1, which matches your requirement
If we change the following line in file:
lib/methods/get-data.js
It works. The release list for vue-resource states that there is a breaking change that caused this in version 0.9: https://github.com/vuejs/vue-resource/releases
I don't know what you want to do with this, but clearly your library is affected by this breaking change.