Getting this error when using Nuxt.js.
The component is wrapped in a client-only tag to avoid any SSR issues.
<client-only></client-only>
Error screenshot:

Implementation:
In component
<Stack :monitor-images-loaded="true" :column-min-width="320" :gutter-width="8" :gutter-height="8">
<StackItem v-for="i in 100" :key="i">
<img src="https://i.imgur.com/0ui5ltX.jpg" />
</StackItem>
</Stack>
Component registration
import { Stack, StackItem } from 'vue-stack-grid'
export default {
components: { Stack, StackItem },
}
Getting this error when using Nuxt.js.
The component is wrapped in a client-only tag to avoid any SSR issues.
Error screenshot:
Implementation:
In component
Component registration