美文网首页
vue3+ts报错:找不到模块“../views/home/in

vue3+ts报错:找不到模块“../views/home/in

作者: 小西瓜简书 | 来源:发表于2023-04-18 16:12 被阅读0次

    问题

    image.png

    解决方法

    1. 利用插件解决。


      image.png

    Volar 是官方的 VSCode 扩展,提供了 Vue 单文件组件中的 TypeScript 支持,还伴随着一些其他非常棒的特性。

    TIP: Volar 取代了我们之前为 Vue 2 提供的官方 VSCode 扩展 Vetur。如果你之前已经安装了 Vetur,请确保在 Vue 3 的项目中禁用它。

    1. 在src目录下创建env.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;
    }
    

    相关文章

      网友评论

          本文标题:vue3+ts报错:找不到模块“../views/home/in

          本文链接:https://www.haomeiwen.com/subject/wfahjdtx.html