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/inside.md

28 lines
381 B

<cn>
#### 容器
放入一个容器中。
</cn>
<us>
#### Inside a container
Spin in a container.
</us>
```html
<style scoped>
.example {
text-align: center;
background: rgba(0,0,0,0.05);
border-radius: 4px;
margin-bottom: 20px;
padding: 30px 50px;
margin: 20px 0;
}
</style>
<template>
<div class="example">
<a-spin />
</div>
</template>
```