解决 VitePress 在 docs中vue 文件导入的 ts 类型的组件报错:Cannot find module...or its corresponding type declarations

报错

vscode 中 ts-plugin 报错提示:

Cannot find module '@/components/Collapse/Collapse.vue' or its corresponding type declarations

意思就是找不到 @/components/Collapse/Collapse.vue 这个组件,或者是它的类型声明文件。一般情况下这个报错是因为缺少类型声明,往下看请确保两件事:

  • 文件在项目中路径是正确导入的,也就是文件能够被正确解析。
  • 在 src 目录里面正常能使用

你可能感兴趣的:(vue.js,前端,javascript)