[Vuejs]-Vuetify Data-Table Pagination Data Elements

0👍

You have access already to the items show in the data table.
it is in you’re this.desserts
If you need to create a duplicate for editing

this.newDesserts = {...this.desserts};

Leave a comment