UNPKG

@wfrog/vc

Version:

`自用` 的基于 `element-plus` 二次封装的 `vue3` 组件库。追求在业务场景中,尽可能使用更少的代码量来实现需求。 因此在组件封装上,以 `方便` 为主,打包仅 `esm` 模式。

28 lines (27 loc) 824 B
import type { PropType } from 'vue'; export interface IPropType { button?: { confirm?: 'popconfirm' | 'messagebox'; confirmInfo?: { title?: string; confirmButtonText?: string; cancelButtonText?: string; msg?: string; }; }; } export declare const preProps: { button: { type: PropType<{ confirm?: "popconfirm" | "messagebox" | undefined; confirmInfo?: { title?: string | undefined; confirmButtonText?: string | undefined; cancelButtonText?: string | undefined; msg?: string | undefined; } | undefined; } | undefined>; }; }; export declare const KEY_NAME: unique symbol; export declare const injectConfig: () => IPropType;