according to the source code of vuex, context is just a literal object with some properties from local, and other properties from store .
Read moreWhat 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