Vue3+TS 报错:找不到模块或其相应的类型声明

在src 目录下找到vite-env.d.ts文件 将下方代码粘贴即可解决

declare module '*.vue' {
    import { ComponentOptions } from 'vue'
    const componentOptions: ComponentOptions
    export default componentOptions
  }

你可能感兴趣的:(ts+vite,1024程序员节,typescript,vite)