1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

Merge f6bd99d718fc3c641f1f613ffaf7b4bfda016e1e into 6858a9ad67483025f6a9432a926beb9327037be3

This commit is contained in:
Anas El Alami 2024-11-28 00:29:02 +00:00 committed by GitHub
commit 3f31feb039
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -14,13 +14,13 @@ const mutations = {
state.sidebar.opened = !state.sidebar.opened state.sidebar.opened = !state.sidebar.opened
state.sidebar.withoutAnimation = false state.sidebar.withoutAnimation = false
if (state.sidebar.opened) { if (state.sidebar.opened) {
Cookies.set('sidebarStatus', 1) Cookies.set('sidebarStatus', 1, { SameSite: 'Lax' })
} else { } else {
Cookies.set('sidebarStatus', 0) Cookies.set('sidebarStatus', 0, { SameSite: 'Lax' })
} }
}, },
CLOSE_SIDEBAR: (state, withoutAnimation) => { CLOSE_SIDEBAR: (state, withoutAnimation) => {
Cookies.set('sidebarStatus', 0) Cookies.set('sidebarStatus', 0, { SameSite: 'Lax' })
state.sidebar.opened = false state.sidebar.opened = false
state.sidebar.withoutAnimation = withoutAnimation state.sidebar.withoutAnimation = withoutAnimation
}, },
@ -29,7 +29,7 @@ const mutations = {
}, },
SET_SIZE: (state, size) => { SET_SIZE: (state, size) => {
state.size = size state.size = size
Cookies.set('size', size) Cookies.set('size', size, { SameSite: 'Lax' })
} }
} }

View File

@ -7,7 +7,7 @@ export function getToken() {
} }
export function setToken(token) { export function setToken(token) {
return Cookies.set(TokenKey, token) return Cookies.set(TokenKey, token, { SameSite: 'Lax' })
} }
export function removeToken() { export function removeToken() {