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