mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-29 18:00:51 +01:00
added setup.py
This commit is contained in:
19
frontend/src/store/modules/dialogView.js
Normal file
19
frontend/src/store/modules/dialogView.js
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
Reference in New Issue
Block a user