mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
17 lines
244 B
TypeScript
17 lines
244 B
TypeScript
import { createStore } from 'vuex'
|
|
|
|
export default createStore({
|
|
state: {
|
|
showSupportQQ: false
|
|
},
|
|
mutations: {
|
|
setSupportQQ (state, visible) {
|
|
state.showSupportQQ = !!visible
|
|
}
|
|
},
|
|
actions: {
|
|
},
|
|
modules: {
|
|
}
|
|
})
|