公告板
版本库
filestore
活动
搜索
登录
main
/
cockpit
大数据平台驾驶舱
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
fix bug
whyczyk
2022-03-02
d6a8de9744f60c5f09f18ffe349bbc1e4fc1405c
[cockpit.git]
/
src
/
store
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
import Vue from 'vue'
import Vuex from 'vuex'
import app from './modules/app'
Vue.use(Vuex)
const store = new Vuex.Store({
modules: {
app,
},
})
export default store