解决Vue3引入自定义组件报错Cannot find module ‘xxx‘ or its corresponding type declarations问题

一、报错

1、idea里报错

解决Vue3引入自定义组件报错Cannot find module ‘xxx‘ or its corresponding type declarations问题

2、脚手架编译报错

解决Vue3引入自定义组件报错Cannot find module ‘xxx‘ or its corresponding type declarations问题

二、原因

声明都没有问题,为什么还会报错? 是因为import的地址不对。

解决方案

import TheHeader from '../components/the-header.vue';
import TheFooter from "../components/the-footer.vue";
import TheSider from "../components/the-sider.vue";

三、效果如下:

完美解决。

解决Vue3引入自定义组件报错Cannot find module ‘xxx‘ or its corresponding type declarations问题

解决Vue3引入自定义组件报错Cannot find module ‘xxx‘ or its corresponding type declarations问题

上一篇:leetcode 每日一题 91. 解码方法


下一篇:面向对象、类关系、内部类、设计模式