What are getters in Vuex?

Vuex getters behave a lot like Mongoose getters: they’re special properties that are computed from other properties when you access them . For example, suppose your store contains a user’s firstName and lastName . You can write a getter that returns the user’s fullName .

Read more