added setup.py

This commit is contained in:
Marvin Zhang
2019-03-03 10:48:04 +08:00
parent d26f43e09e
commit 8361c04de9
151 changed files with 21609 additions and 10 deletions

View 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