[Vuejs]-Vue datatable row q-input not persisting values of model object

0👍

The problem was in the AddRow method. It is stated in the documentation that vue can only track changes to objects with defined properties. In the AddRow method I was adding an empty data object to the model. Adding properties with null values fixed the issue.

Leave a comment