got dynamic store module to work

using @urbn/vuex-helpers
This commit is contained in:
2020-09-15 15:44:34 +02:00
parent 501d364a22
commit 6b147d9419
6 changed files with 86 additions and 26 deletions
+25
View File
@@ -0,0 +1,25 @@
// https://codeburst.io/dynamic-modules-with-vuex-and-vue-b9c481ca792
// https://www.brophy.org/post/instance-aware-vuex-modules-1/
// import qs from 'querystring'
// import { REST } from 'api/rest-axios'
export default {
namespaced: true,
// initial state
state: {
},
// getters
getters: {
},
// mutations
mutations: {
},
// actions
actions: {
}
}