[Vuejs]-Vuex freezing when modifying reactive state properties

0👍

I figured out the issue. The strict flag was being used when creating the Store object. Everything worked once I removed that. As Tordek said, don’t do this.

I suppose I need to figure out why that’s a problem, as it points to the state being manipulated outside of a mutation.

Leave a comment