[Vuejs]-Modular store in Vuex with Vue JS is not working

2👍

alert(this.$store.PersonalInfoFormStore.state.name)

into

alert(this.$store.state.PersonalInfoFormStore.name)

2👍

I think it should be this.$store.state.PersonalInfoFormStore.name instead

👤HuyDD

Leave a comment