Files
crawlab/frontend/src/store/modules/dialogView.js
Marvin Zhang cc59e1cfce added setup.py
2019-03-03 10:48:04 +08:00

20 lines
335 B
JavaScript

const dialogView = {
namespaced: true,
state: {
dialogType: '',
dialogVisible: false
},
getters: {},
mutations: {
SET_DIALOG_TYPE (state, value) {
state.dialogType = value
},
SET_DIALOG_VISIBLE (state, value) {
state.dialogVisible = value
}
},
actions: {}
}
export default dialogView