VUE3 TS报错 找不到模块“./components/xxx.vue”或其相应的类型声明 沉舟orz 2020-09-09 2,862 阅读1分钟 你需要在src目录中新建一个*.d.ts文件 declare module "*.vue" { import { ComponentOptions } from "vue"; const componentOptions: ComponentOptions; export default componentOptions;}