You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
369 B

4 months ago
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
showSidebar: false,
showFooter:false,
4 months ago
},
mutations: {
SET_SIDEBAR(state, show) {
state.showSidebar = show;
},
SET_FOOTER(state, show) {
state.showFooter = show;
}
},
getters: {
4 months ago
},
actions: {
},
modules: {
}
})