Closed
Description
Hello
i've tested below but it displays zero rows. Displaying 0 to 0 of 0 items
<vuetable
api-url="/api/users"
table-wrapper="#content"
data-path="data"
pagination-path=""
:fields="columns"
></vuetable>
json data be like this
{
total: 101,
per_page: 15,
current_page: 1,
last_page: 7,
next_page_url: "http://vue.dev/api/users?page=2",
prev_page_url: null,
from: 1,
to: 15,
data: [
{
id: 1,
name: "example",
email: "example@gmail.com",
created_at: "2016-09-21 01:09:43",
updated_at: "2016-09-21 01:09:43"
},
Thank you!