I import the axios in the main.js
but when I use the v-server-table
console print [Vue warn]: Error in created hook: "vue-tables: No supported ajax library was found. (jQuery, axios or vue-resource)"
who can tell me what's wrong? thx!
You need to make axios a _global_ variable so that it is accessible to the package.
window.axios = require('axios');
@matfish2 it works. thx very much!
Most helpful comment
You need to make axios a _global_ variable so that it is accessible to the package.