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/switch/demo/loading.vue

32 lines
499 B

<docs>
---
order: 4
title:
zh-CN: 加载中
en-US: Loading
---
## zh-CN
标识开关操作仍在执行中
## en-US
Mark a pending state of switch.
</docs>
<template>
<a-space direction="vertical">
<a-switch v-model:checked="state.checked1" loading />
<a-switch v-model:checked="state.checked2" size="small" loading />
</a-space>
</template>
<script lang="ts" setup>
import { reactive } from 'vue';
const state = reactive({
checked1: true,
checked2: false,
});
</script>