ratiw / vue-table

data table simplify! -- vuetable is a Vue.js component that will automatically request (JSON) data from the server and display them nicely in html table with swappable/extensible pagination component.
MIT License
1.83k stars 303 forks source link

Can not render data in table #173

Open sharmistha071 opened 6 years ago

sharmistha071 commented 6 years ago

@ratiw If i change api-url="http://127.0.0.1:8000/api/items/", then tableData became null. Here's my api structure: { "count": 11, "next": "http://127.0.0.1:8000/api/items/?page=2", "previous": null, "results": [ { "id": 1, "name": "Item One", }, { "id": 2, "name": "Item Two", }, ] }