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.vue

26 lines
442 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 1
title:
zh-CN: 各种大小
en-US: Size
---
## zh-CN
小的用于文本加载默认用于卡片容器级加载大的用于**页面级**加载
## en-US
A small `Spin` use in loading text, default `Spin` use in loading card-level block, and large `Spin` use in loading **page**.
</docs>
<template>
<a-space>
<a-spin size="small" />
<a-spin />
<a-spin size="large" />
</a-space>
</template>