UNPKG

@npmxiaowu/h-ui-plus

Version:

Vue3 中基于Element-plus二次封装基础组件文档

9 lines (8 loc) 266 B
import { Plugin } from "vue"; type SFCWithInstall<T> = T & Plugin & { label?: string; }; export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E | undefined, options?: { label?: string; }) => SFCWithInstall<T> & E; export {};