[Vuejs]-How to delete row from b-table

0๐Ÿ‘

โœ…

If you stored this b-table items(like rows) in some array of Vue instance and then you rendered those items using v-for then you can try to find this item using .find() in your array and delete it using .splice(). If it will not work you can get parent of your node and try to use .removeChild

0๐Ÿ‘

This worked for me:

this.$delete(this.$refs.customItemGrid.items,item);

Leave a comment