### Getting this error when using Nuxt.js. The component is wrapped in a client-only tag to avoid any SSR issues. ```html <client-only></client-only> ``` ## Error screenshot:  ## Implementation: ### In component ```html <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 ```javascript import { Stack, StackItem } from 'vue-stack-grid' export default { components: { Stack, StackItem }, } ```