[Vuejs]-Vue Router access individual getters from Vuex

0👍

This seems to me a syntax error, because getters are accessed as properties that are cached as part of the Vue’s reactivity system. Use to access it:

this.$store.getters

Leave a comment