hunyan-io / vite-plugin-vue-nested-sfc

Nest SFCs within your SFC.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Failed to load url components/HelloWorld.vue

hunyan-io opened this issue · comments

Imports inside nested SFCs cause this error Failed to load url components/HelloWorld.vue (resolved id: components/HelloWorld.vue) in virtual:vue-nested-sfc/path/to/Component.vue. Does the file exist?

Example

<component name="example" lang="vue">
  <template> Example </template>
  <script lang="ts" setup>
      import HelloWorld from "./components/HelloWorld.vue";
  </script>
</component>