UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

27 lines (26 loc) 408 B
import { ComponentSize } from '../../typings'; /** * 头像属性 */ export interface AvatarProps { /** * 头像图片 */ img?: string; /** * 头像描述 */ alt: string; /** * 是否随机背景色 */ randomColor?: boolean; /** * 是否圆角头像 */ round?: boolean; /** * 头像大小 */ size?: ComponentSize; }