ant-design-vue/components/switch/demo/text.md

25 lines
471 B
Markdown

<cn>
#### 文字和回标
å¸Ļ有文字和回标。
</cn>
<us>
#### Text & icon
With text and icon.
</us>
```tpl
<template>
<div>
<a-switch checkedChildren="åŧ€" unCheckedChildren="å…ŗ" defaultChecked />
<br />
<a-switch checkedChildren="1" unCheckedChildren="0" />
<br />
<a-switch defaultChecked>
<a-icon type="check" slot="checkedChildren" />
<a-icon type="close" slot="unCheckedChildren" />
</a-switch>
</div>
</template>
```