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

818 B

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