44 lines
		
	
	
		
			818 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			818 B
		
	
	
	
		
			Markdown
		
	
	
| <cn>
 | ||
| #### 卡片加载中
 | ||
| 可以直接把内容内嵌到 `Spin` 中,将现有容器变为加载状态。
 | ||
| </cn>
 | ||
| 
 | ||
| <us>
 | ||
| #### Embedded mode
 | ||
| Embedding content into `Spin` will alter it into loading state.
 | ||
| </us>
 | ||
| 
 | ||
| ```html
 | ||
| <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>
 | ||
| ```
 |