1👍
✅
Try changing onRegionClick
to use arrow function so that this.$store.dispatch
makes reference to the top-level object.
onRegionClick: (element, code, region) => {
this.currentRegion = region;
this.$store.dispatch('SET_REGION', this.currentRegion);
}
Source:stackexchange.com