mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
1.2 KiB
1.2 KiB
Skeleton
Install
import { Skeleton } from 'vant';
Vue.use(Skeleton);
Usage
Basic Usage
<van-skeleton title :row="3" />
Show Avatar
<van-skeleton title avatar :row="3" />
Show Children
<van-skeleton
title
avatar
:row="3"
:loading="loading"
>
<div>Content</div>
</van-skeleton>
export default {
data() {
return {
loading: true
}
},
mounted() {
this.loading = false;
}
};
API
Props
Attribute | Description | Type | Default |
---|---|---|---|
row | Row count | Number |
0 |
row-width | Row width, can be array | `Number | String |
title | Whether to show title placeholder | Boolean |
false |
title-width | Title width | `Number | String` |
avatar | Whether to show avatar placeholder | Boolean |
false |
avatar-size | Size of avatar placeholder | `Number | String` |
avatar-shape | Shape of avatar placeholder,can be set to square |
String |
round |
loading | Whether to show skeleton,pass false to show child component |
Boolean |
true |
animate | Whether to enable animation | Boolean |
true |