找不到模块“../views/About.vue”或其相应的类型声明。

只需在vite的vite-env.d.ts中加入以下代码即可

declare module '*.vue' {
    
    
    import {
    
     Component } from 'vue'; const component: Component; export default component;
}

猜你喜欢

转载自blog.csdn.net/weixin_45932157/article/details/135177261