vue3+ts 报错提示 找不到模块“./XXX.vue”

在src下创建 .d.ts文件加入以下代码即可解决

declare module '*.vue' {
    import type { DefineComponent } from 'vue'
    // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
    const component: DefineComponent<{}, {}, any>
    export default component
  }

猜你喜欢

转载自blog.csdn.net/m0_61672533/article/details/130604844