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/basic.md

31 lines
393 B

<cn>
#### 基本用法
最简单的用法。
</cn>
<us>
#### basic Usage
The most basic usage.
</us>
```html
<template>
<div>
<a-switch defaultChecked @change='onChange'/>
</div>
</template>
<script>
export default {
data () {
return {
}
},
methods: {
onChange(checked){
console.log(`a-switch to ${checked}`);
}
},
}
</script>
```