vuetable-2-tutorial
vuetable-2-tutorial copied to clipboard
How I can clone row
I want to add row when click button. How I can do this function.
You'll just have to append a new row to the tableData
of Vuetable and it should show up. That means you'll have to make an input form gathering the input data from the user then after validation, you append it to tableData
.
this.$refs.tableData.append(newData)
By the way, you could get my reply faster if you post in Vuetable main repo. I do check that repo regularly.