UNPKG

yuang-framework-ui-pc

Version:

yuang-framework-ui-pc Library

22 lines (20 loc) 364 B
/** * 数据 */ export interface AvatarItem extends Record<keyof any, any> { /** 循环的 key */ key?: string | number | symbol; /** 头像名称 */ label?: string; /** 头像链接 */ value?: string; } /** * 图片加载失败事件参数 */ export interface AvatarErrorOption { /** 数据 */ item: AvatarItem; /** 事件 */ e: Event; }