[Vuejs]-Vue not reacting to a change as it should – only reacts after another action performed

0👍

It turns out I needed to use Vue.set(member, ‘toggle’, true); Vue wasn’t being notified about the change, but this did the trick!

Leave a comment