Vue - 常见配置问题

71 阅读1分钟

此文章,目前仅作本人vue开发常见问题记录。

ts报错提示

  • 找不到模块“/@/views/search/searchDetail/index.vue”或其相应的类型声明。
    在根目录env.d.ts添加以下声明(如果没有就新建一个)
declare module "*.vue" {
  import type { DefineComponent } from "vue";
  const component: ComponentOptions | ComponentOptions["setup"];
  export default component;
}