You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/spin/demo/size.md

20 lines
399 B

<cn>
#### 各种大小
小的用于文本加载,默认用于卡片容器级加载,大的用于**页面级**加载。
</cn>
<us>
#### Size
A small `Spin` use in loading text, default `Spin` use in loading card-level block, and large `Spin` use in loading **page**.
</us>
```html
<template>
<div>
<a-spin size="small" />
<a-spin />
<a-spin size="large" />
</div>
</template>
```