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

44 lines
818 B

7 years ago
<cn>
#### 卡片加载中
可以直接把内容内嵌到 `Spin` 中,将现有容器变为加载状态。
</cn>
<us>
#### Embedded mode
Embedding content into `Spin` will alter it into loading state.
</us>
```html
<style scoped>
.spin-content{
7 years ago
border: 1px solid #91d5ff;
background-color: #e6f7ff;
padding: 30px;
}
</style>
<template>
<div>
<a-spin :spinning="spinning">
<div class="spin-content">
7 years ago
可以点击切换按钮控制本区域的spin展示。
</div>
</a-spin>
Loading state<a-switch v-model="spinning"></a-switch>
7 years ago
</div>
</template>
<script>
export default {
data () {
return {
spinning: false
}
},
methods: {
changeSpinning(){
this.spinning = !this.spinning
}
},
}
</script>
```