VSCode Vite4+Vue3 Cannot find module ‘./App.vue‘ or its corresponding type declarations.ts

VSCode Vite4+Vue3 Cannot find module ‘./App.vue‘ or its corresponding type declarations.ts_第1张图片

 项目根目录:vite-env.d.ts加入

declare module "*.vue" {

        import { DefineComponent } from "vue"

        const component: DefineComponent<{}, {}, any>

        export default component

}

VSCode Vite4+Vue3 Cannot find module ‘./App.vue‘ or its corresponding type declarations.ts_第2张图片

 解决

VSCode Vite4+Vue3 Cannot find module ‘./App.vue‘ or its corresponding type declarations.ts_第3张图片

 

你可能感兴趣的:(前端,vscode,前端,javascript)