搭建vue3项目时,报Cannot find module '../views/xx.vue' or its corresponding type declarations.ts错误:
原因:因为ts只能解析 .ts 文件,无法解析 .vue文件
解决方案:在项目根目录下的env.d.ts文件里面输入如下代码
declare module '*.vue' {
import { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}