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);
Source:stackexchange.com