-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
Closed
Labels
Description
TOGGLE_SIDEBAR: state => {
if (state.sidebar.opened) {
Cookies.set('sidebarStatus', 1)
} else {
Cookies.set('sidebarStatus', 0)
}
state.sidebar.opened = !state.sidebar.opened
state.sidebar.withoutAnimation = false
}
例如点了侧边栏,此时还没对state.siderbar.opened置反。应该是对掉设置sidebarStatus的值,如下:
TOGGLE_SIDEBAR: state => {
if (state.sidebar.opened) {
Cookies.set('sidebarStatus', 0)
} else {
Cookies.set('sidebarStatus', 1)
}
state.sidebar.opened = !state.sidebar.opened
state.sidebar.withoutAnimation = false
}