常见报错
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.

// 修改 tsconfig.json
"noImplicitAny": false,
"allowJs": true
❗❗奇葩解决方案:重启 idea 就好了️❗❗