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.vue

40 lines
718 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 3
title:
zh-CN: 卡片加载中
en-US: Embedded mode
---
## zh-CN
可以直接把内容内嵌到 `Spin` 将现有容器变为加载状态
## en-US
Embedding content into `Spin` will alter it into loading state.
</docs>
<template>
<a-spin :spinning="spinning">
<a-alert
message="Alert message title"
description="Further details about the context of this alert."
></a-alert>
</a-spin>
<div class="spin-state">
Loading state
<a-switch v-model:checked="spinning" />
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const spinning = ref<boolean>(false);
</script>
<style scoped>
.spin-state {
margin-top: 16px;
}
</style>