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

49 lines
991 B

<docs>
---
order: 2
title:
zh-CN: 文字和图标
en-US: Text & icon
---
## zh-CN
带有文字和图标
## en-US
With text and icon.
</docs>
<template>
<div>
<a-switch v-model:checked="checked1" checked-children="" un-checked-children="" />
<br />
<a-switch v-model:checked="checked2" checked-children="1" un-checked-children="0" />
<br />
<a-switch v-model:checked="checked3">
<template #checkedChildren><check-outlined /></template>
<template #unCheckedChildren><close-outlined /></template>
</a-switch>
</div>
</template>
<script lang="ts">
import { defineComponent, reactive, toRefs } from 'vue';
import { CheckOutlined, CloseOutlined } from '@ant-design/icons-vue';
export default defineComponent({
components: {
CheckOutlined,
CloseOutlined,
},
setup() {
const state = reactive({
checked1: true,
checked2: false,
checked3: false,
});
return { ...toRefs(state) };
},
});
</script>