You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the data from a variety of places then I construct an Array of Objects and validate some data, so how can I pass this data to Vue-table without use use api-url?
The text was updated successfully, but these errors were encountered:
@DannyFelizvuetable is designed to work with the backend server from the beginning and all features are tied back to it. e.g. sorting, filtering. So, there is no way to use Array of Objects with vuetable. This is because it will always need a place (the sever) to interact with, but the Array of Objects will not be able to do that.
I would suggest you make an intermediate agent/source (as another layer in your app) to gather and combine those information and then serve it to vuetable instead (that means it will have a url). Node.js might be a good solution, but you might use any other solution that you're comfortable with as well.
I get the data from a variety of places then I construct an Array of Objects and validate some data, so how can I pass this data to Vue-table without use use api-url?
The text was updated successfully, but these errors were encountered: