Cannot find module ‘vue‘ or its corresponding type declarations
在使用vue3+vite创建新的工程时,在新增.vue文件时会出现Cannot find module 'vue'这个错误。
只需要我们在项目中的.d.ts文件中添加以下代码即可
declare module '*.vue' {
import { defineComponent } from 'vue';
const component: ReturnType<typeof defineComponent>;
export default component;
}