[Vuejs]-How to clear only selected row in data-table, vuetify

1👍

Use any unique property (in this example – an id) to filter the row out of your items array.

cancel(){
    this.desserts = this.desserts.filter((e)=> {
      return e.id !== this.selected.id;
    });
  }

Leave a comment