UNPKG

@pusdn/pgz-comp-elep

Version:

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

14 lines (13 loc) 263 B
export interface ApiResponse<T = any> { success: boolean; message: string; code: number; result: T; timestamp: number; } export interface OptionItem { value: string | number; text: string; title?: string; [key: string]: any; }