环境:vue3+ts
解决办法:在src目录里面添加env.d.ts文件,在文件里贴上
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: ComponentOptions | ComponentOptions['setup']
export default component
}
标签:vue,..,ComponentOptions,component,ts,Home From: https://www.cnblogs.com/Qinhr/p/17654071.html