Vue3 error solution: Cannot find module 'xxx.vue' or its corresponding type declaration. (Vue 3 can not find module)

Create a xx.d.ts file under src

declare module '*.vue' {
  import { ComponentOptions } from 'vue'
  const componentOptions: ComponentOptions
  export default componentOptions
}

 

Supongo que te gusta

Origin blog.csdn.net/weixin_43465508/article/details/131647244
Recomendado
Clasificación