UNPKG

@pusdn/pgz-comp-elep

Version:

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

13 lines (12 loc) 284 B
export interface PgzCheckboxProps { value: string | number | undefined; dictCode?: string; useDicColor?: boolean; options?: Array<DictOption>; } export interface DictOption { value: string | number; label: string; color?: string; [key: string]: any; }