初始上传
This commit is contained in:
23
addon/cashier/source/os/store/index.js
Executable file
23
addon/cashier/source/os/store/index.js
Executable file
@@ -0,0 +1,23 @@
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
|
||||
import app from "./modules/app"
|
||||
import billing from "./modules/billing"
|
||||
import buycard from "./modules/buycard"
|
||||
import recharge from "./modules/recharge"
|
||||
|
||||
import getters from "./getters"
|
||||
|
||||
Vue.use(Vuex);
|
||||
|
||||
const store = new Vuex.Store({
|
||||
modules: {
|
||||
app,
|
||||
billing,
|
||||
buycard,
|
||||
recharge
|
||||
},
|
||||
getters
|
||||
});
|
||||
|
||||
export default store;
|
||||
Reference in New Issue
Block a user