解决方法:
在项目根目录或 src 文件夹下找到env.d.ts,并写入以下内容:文章来源:https://www.toymoban.com/news/detail-503927.html
// 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
}
同时入口文件main.ts出现爆红错误如下,依照此法也可以解决:文章来源地址https://www.toymoban.com/news/detail-503927.html
到了这里,关于vue3 报错解决:找不到模块或其相应的类型声明。的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!