added site list

This commit is contained in:
Marvin Zhang
2019-05-09 22:15:58 +08:00
parent 0ad0303285
commit e822c65eb2
4 changed files with 32 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ import task from './modules/task'
import file from './modules/file'
import schedule from './modules/schedule'
import lang from './modules/lang'
import site from './modules/site'
import getters from './getters'
Vue.use(Vuex)
@@ -27,7 +28,8 @@ const store = new Vuex.Store({
task,
file,
schedule,
lang
lang,
site
},
getters
})

View File

@@ -55,7 +55,7 @@ const mutations = {
},
SET_NODE_STATS (state, value) {
state.nodeStats = value
},
}
}
const actions = {