Vuetiful is a component framework written on top of the Vue reactive library. It is primarily designed for creating business/administration applications where the displaying of data is paramount.
I have a toggle inside a column of vuetiful datatablelistening to its changeevent.
I want to it when changed to send a request to the back-end to store the change in the database.
The problem is the change event triggered multiple times when I bind the datatable with new data in the mounted function. This will make a request for every toggle in the datatable at the beginning.
Any way to overcome this problem?
thanks
I have a toggle inside a column of vuetiful
datatable
listening to itschange
event. I want to it when changed to send a request to the back-end to store the change in the database. The problem is the change event triggered multiple times when I bind the datatable with new data in the mounted function. This will make a request for every toggle in the datatable at the beginning. Any way to overcome this problem? thanksHtml:
Script: