[Vuejs]-Accessing Vue components data

0👍

You are doing it wrong. You shouldn’t diractly mutate a value which is in store. You should write a mutator in the store file and change value by that. Here is the docs.

https://vuex.vuejs.org/en/mutations.html

Leave a comment