1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| import {getCache,setCache} from '@/utils/sessionStorage'
| const state ={
| opened:getCache('SIDEBAR_OPENED')?JSON.parse(getCache('SIDEBAR_OPENED')):false
| }
| const mutations={
| TOGGLE_SIDEBAR:state=>{
| state.opened =!state.opened
| setCache('SIDEBAR_OPENED',state.opened)
| }
| }
| const actions={
| togglesidebar({ commit }) {
|
| commit('TOGGLE_SIDEBAR')
| }
| }
| export default{
| namespaced: true,
| state,
| mutations,
| actions
| }
|
|