常见报错

Siona

常见报错【Vue3 + TypeScript + Vite】

找不到模块 @/xxx.vue 或其相应的类型声明

Error

Vue: Cannot find module @/App.vue or its corresponding type declarations.

解决方案:配置 @ 路径

详见文章 Vue3 + TypeScript 配置 @ 路径别名

Error

Vue: Cannot find module element-plus or its corresponding type declarations.

找不到模块或其相应的类型声明.png
找不到模块或其相应的类型声明.png
// 修改 tsconfig.json
"noImplicitAny": false,
"allowJs": true

❗❗奇葩解决方案:重启 idea 就好了️❗❗

Last Updated 3/27/2024, 9:42:16 AM