NuxtN
Nuxt7mo ago
4 replies
matamune

defineLazyHydrationComponent can't import component

this my code
<template>
  <div>
    <LazyListMovieStyleA />
  </div>
</template>

<script setup>
const LazyListMovieStyleA = defineLazyHydrationComponent('visible', () =>
  import('@/components/page-comp/home/ListMovieStyleA.vue')
)
</script>


and i make error LazyListMovieStyleA is not defined
but I am sure the path is correct
Was this page helpful?