1👍
I think the problem is only in build because of lack of SSR (server side rendering) of your component. There is no window in build mode. Try to wrap your component inside vue’s <template>
tag with <ClientOnly>
tag like this:
<template>
<ClientOnly>
<my-component />
</ClientOnly>
</template>
Source:stackexchange.com