vue的router文件里面import路径的时候ts报红色下划线

Cannot find module '@/views/index/index.vue' or its corresponding type declarations.ts(2307)
No quick fixes available
 
 
 
解决方法
在vite-env.d文件中新增
declare module "*.vue" {
    import { DefineComponent } from "vue"
    const component: DefineComponent<{}, {}, any>
    export default component
}
posted @ 2023-07-25 14:37  郭大蛋子  阅读(635)  评论(0编辑  收藏  举报