fix(nuxt): post non-proxied cookie value via `BroadcastChannel` (#21653)

This commit is contained in:
Daniel Roe 2023-06-20 17:02:13 +01:00 committed by GitHub
parent 5d4b71426e
commit b57d841614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import type { Ref } from 'vue'
import { getCurrentInstance, nextTick, onUnmounted, ref, watch } from 'vue'
import { getCurrentInstance, nextTick, onUnmounted, ref, toRaw, watch } from 'vue'
import type { CookieParseOptions, CookieSerializeOptions } from 'cookie-es'
import { parse, serialize } from 'cookie-es'
import { deleteCookie, getCookie, setCookie } from 'h3'
@ -39,7 +39,7 @@ export function useCookie<T = string | null | undefined> (name: string, _opts?:
const callback = () => {
writeClientCookie(name, cookie.value, opts as CookieSerializeOptions)
channel?.postMessage(cookie.value)
channel?.postMessage(toRaw(cookie.value))
}
let watchPaused = false