vue3 ts 报错:无法找到模块“../views/index/Home.vue”的声明文件_javascript

解决办法:

vue3 ts 报错:无法找到模块“../views/index/Home.vue”的声明文件_typescript_02

env.d.ts 新增代码片段:

declare module "*.vue" {
  import type { DefineComponent } from "vue";
  // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
  const component: DefineComponent<{}, {}, any>;
  export default component;
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.