安装依赖
pnpm add vue-component-type-helpers
使用
import Test from './components/Test.vue'
import type { ComponentExposed } from 'vue-component-type-helpers'
const exposeType = ref<null | ComponentExposed<typeof Test>>()
type Props = ComponentProps<typeof Test>
type Slots = ComponentSlots<typeof Test>
参考资料
Cannot use InstanceType<typeof Comp<any>>> on generic components