mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
34 lines
403 B
Vue
34 lines
403 B
Vue
|
<docs>
|
||
|
---
|
||
|
order: 2
|
||
|
title:
|
||
|
zh-CN: 容器
|
||
|
en-US: Inside a container
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
放入一个容器中。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Spin in a container.
|
||
|
|
||
|
</docs>
|
||
|
|
||
|
<template>
|
||
|
<div class="example">
|
||
|
<a-spin />
|
||
|
</div>
|
||
|
</template>
|
||
|
<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>
|