使用ts找不到.vue的原因

230 阅读1分钟

使用ts引入.vue文件时发现如下报错 image.png 谷歌到类似解决方法

github.com/vuejs/vue-c…

创建shims-vue.d.ts文件(放在根目录无需引用),告诉TS如何理解.vue文件

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