mapGetters
mapGetters is a helper function provided by Vuex, the official state management library for Vue.js. It's used to create computed properties that map directly to Vuex getters. Getters are essentially computed properties for your Vuex store, allowing you to derive state from the store in a declarative way.
When using mapGetters, you can pass an array of strings representing the names of the getters you
Alternatively, mapGetters can also take an object, which allows you to rename the mapped computed property