2👍
✅
You are using the Vue.set
method incorrectly.
It is available on a Vue instance via this.$set
. It should look like this:
this.$set(this.actions[index], 'visibility', true);
Source:stackexchange.com