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

图片[1] - vue3 报错解决:找不到模块或其相应的类型声明。 - MaxSSL

解决方法:

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

// env.d.ts/// // 简单版本// declare module '*.vue'// 推荐使用declare module '*.vue' {// 引入vue模块中ts的方法import type { DefineComponent } from 'vue'// 定义vue组件以及类型注解const component: DefineComponentexport default component}

图片[2] - vue3 报错解决:找不到模块或其相应的类型声明。 - MaxSSL

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

图片[3] - vue3 报错解决:找不到模块或其相应的类型声明。 - MaxSSL

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享