32 lines
499 B
Vue
32 lines
499 B
Vue
<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>
|