What is namespaced module?

Namespaced getters and actions will receive localized getters , dispatch and commit . In other words, you can use the module assets without writing prefix in the same module. Toggling between namespaced or not does not affect the code inside the module.

Read more

What is mapState?

mapState is a helper that simplifies creating a computed property that reflects the value of a given state . Similarly: mapGetters is a helper that simplifies creating a computed property that reflects the value returned by a given getter.

Read more