import { getCurrentInstance } from 'vue' import { extend } from '../' export function useExpose>(apis: T) { const instance = getCurrentInstance() if (instance) { extend(instance.proxy as object, apis) } }