UNPKG

@pusdn/pgz-comp-elep

Version:

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

11 lines (10 loc) 341 B
import type { ButtonProps } from 'element-plus'; import type { Mutable } from 'element-plus/es/utils'; export interface TButtonSelfProps { time?: number; tip?: string; placement?: string; tipProps?: Record<string, any>; isDebounce?: boolean; } export type TButtonProps = TButtonSelfProps & Partial<Mutable<ButtonProps>>;