前后端分目录

This commit is contained in:
andywang
2022-07-14 12:55:31 +08:00
parent cd72c43d62
commit bb8cf90f53
1155 changed files with 47237 additions and 14446 deletions

View File

@@ -0,0 +1,28 @@
import Vue from 'vue'
import Vuex from 'vuex'
// import request from '../utils/request.js'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
barShrink: false,
systemList:[]
},
mutations: {
setbarShrink(state, res) {
state.barShrink = res
},
setsystemList(state, res) {
state.systemList = res
},
},
actions: {},
modules: {},
getters: {
}
})