找不到模块“xxx.vue”或其相应的类型声明。ts

在项目根目录下新建.d.ts文件并写入

declare module '*.vue' {
    
    
  import {
    
     DefineComponent } from 'vue';
  const Component: DefineComponent<{
    
    }, {
    
    }, any>;
  export default Component;
}

不想自己写的小伙伴 一积分下载 下载配置文件

猜你喜欢

转载自blog.csdn.net/qq_29669259/article/details/122319234