找不到模块“../view/Home.vue”或其相应的类型声明。
环境:vue3+ts
解决办法:在src目录里面添加env.d.ts文件,在文件里贴上
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: ComponentOptions | ComponentOptions['setup']
export default component
}
环境:vue3+ts
解决办法:在src目录里面添加env.d.ts文件,在文件里贴上
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: ComponentOptions | ComponentOptions['setup']
export default component
}