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

27 lines
487 B
JavaScript

8 years ago
import Cookies from 'js-cookie'
8 years ago
const app = {
state: {
sidebar: {
opened: !+Cookies.get('sidebarStatus')
}
},
mutations: {
TOGGLE_SIDEBAR: state => {
if (state.sidebar.opened) {
8 years ago
Cookies.set('sidebarStatus', 1)
8 years ago
} else {
8 years ago
Cookies.set('sidebarStatus', 0)
8 years ago
}
8 years ago
state.sidebar.opened = !state.sidebar.opened
8 years ago
}
},
actions: {
ToggleSideBar: ({ commit }) => {
commit('TOGGLE_SIDEBAR')
}
}
8 years ago
}
8 years ago
8 years ago
export default app