[Vuejs]-Vuejs Component Route Dynamic Selection

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);

Leave a comment