[Vuejs]-How to access array elements inside vue.js conditional css class

2👍

It is a gotcha. This page goes into it a bit: https://vuejs.org/2016/02/06/common-gotchas/

In short, you want to do

var val = this.attachedRed[index]
this.attachedRed.$set(index, !val);

Leave a comment