TS2307: Cannot find module '@/views/homeView.vue' or its corresponding type declarations.
引入vue文件报错
原因:typeScript不识别以.vue结尾的文件
解决办法:
在vite-env.d.ts(vite)或者shims-vue.d.ts(vue-cli)文件中添加如下代码:
vue
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}