vuux
Version:
Vue3 Nuxt3 Nuxt4 组件库
28 lines (27 loc) • 453 B
TypeScript
/**
* Props
*/
export interface Props {
loading?: boolean;
width?: string;
height?: string;
avatar?: boolean;
avatarStyle?: SkeletonAvatar;
round?: boolean;
row?: string | number;
title?: boolean;
}
/**
* AvatarProps
*/
export interface AvatarProps {
size?: number;
shape?: 'circle' | 'square';
}
/**
* 头像类型
*/
export interface SkeletonAvatar {
size?: number;
shape?: 'circle' | 'square';
}