[Vuejs]-Why Vue data is not updating int his case

0👍

Vue State Management exists for a set of reasons and making the state variables reactive is one of them. I suggest reading/watching this explanation on the official docs

If you want to implement your own vanilla store, you can update your store with Vue.set or this.$set.

Leave a comment