解决vue3报错:找不到模块或其相应的类型声明

来自:网络
时间:2023-07-25
阅读:
目录

问题截图

解决vue3报错:找不到模块或其相应的类型声明

解决方法:

在项目根目录或 src 文件夹下找到env.d.ts,并写入以下内容:

// env.d.ts
/// <reference types="vite/client" />
 
// 简单版本
// declare module '*.vue'
 
// 推荐使用
declare module '*.vue' {
  // 引入vue模块中ts的方法
  import type { DefineComponent } from 'vue'
  // 定义vue组件以及类型注解
  const component: DefineComponent<{}, {}, any>
  export default component
}

解决vue3报错:找不到模块或其相应的类型声明

同时入口文件main.ts出现爆红错误如下,依照此法也可以解决:

解决vue3报错:找不到模块或其相应的类型声明

总结

返回顶部
顶部