device
device copied to clipboard
Custom flag in Nuxt 3
How to make a plugin to add custom flag in Nuxt 3 ? I tried this but not working
export default defineNuxtPlugin((nuxtApp) => {
let webview = useCookie('webview')
let device = useDevice()
device.isWebview = webview && webview.value !== null;
})
Try with this
device.isWebview = webview !== null ? webview.value : false;
Try with this
device.isWebview = webview !== null ? webview.value : false;
Still not working