Vue3 踩坑记录

2023-03-15  本文已影响0人  LemonTree7

1、使用ts出现~~找不到模块“@/views/HomeView.vue”或其相应的类型声明

找到一个解决方案:
在项目的env.d.ts文件增加一下代码:

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

或者

declare module '*.vue' {
   import type { DefineComponent } from 'vue'
   const component: ComponentOptions | ComponentOptions['setup']
   export default component
}

持续更新~~

上一篇 下一篇

猜你喜欢

热点阅读