--- category: Components subtitle: 加载占位图 type: Feedback title: Skeleton cols: 1 --- 在需要等待加载内容的位置提供一个占位图。 ## 何时使用 - 网络较慢,需要长时间等待加载处理的情况下。 - 图文信息内容较多的列表/卡片中。 ## API ### Skeleton | 属性 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | active | 是否展示动画效果 | boolean | false | | avatar | 是否显示头像占位图 | boolean \| [SkeletonAvatarProps](#SkeletonAvatarProps) | false | | loading | 为 `true` 时,显示占位图。反之则直接展示子组件 | boolean | - | | paragraph | 是否显示段落占位图 | boolean \| [SkeletonParagraphProps](#SkeletonParagraphProps) | true | | title | 是否显示标题占位图 | boolean \| [SkeletonTitleProps](#SkeletonTitleProps) | true | ### SkeletonAvatarProps | 属性 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | size | 设置头像占位图的大小 | Enum{ 'large', 'small', 'default' } | - | | shape | 指定头像的形状 | Enum{ 'circle', 'square' } | - | ### SkeletonTitleProps | 属性 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | width | 设置标题占位图的宽度 | number \| string | - | ### SkeletonParagraphProps | 属性 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | rows | 设置段落占位图的行数 | number | - | | width | 设置段落占位图的宽度,若为数组时则为对应的每行宽度,反之则是最后一行的宽度 | number \| string \| Array | - |