[Vuejs]-Remove table row after post 1 item inline table in vueJS

3👍

You can use findIndex to splice arr

this.countries.splice(this.countries.findIndex(e => e === index),1)

Leave a comment