What is a Vuex getter?

Vuex allows us to define “getters” in the store. You can think of them as computed properties for stores . WARNING. As of Vue 3.0, the getter’s result is not cached as the computed property does. This is a known issue that requires Vue 3.1 to be released.

Read more