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

30 lines
390 B
Markdown
Raw Normal View History

2018-02-27 04:14:29 +00:00
<cn>
#### 基本用法
最简单的用法。
</cn>
<us>
#### basic Usage
The most basic usage.
</us>
```html
<template>
<div>
2019-09-28 12:45:07 +00:00
<a-switch defaultChecked @change="onChange" />
2018-02-27 04:14:29 +00:00
</div>
</template>
<script>
export default {
2019-09-28 12:45:07 +00:00
data() {
return {};
2018-02-27 04:14:29 +00:00
},
methods: {
2019-09-28 12:45:07 +00:00
onChange(checked) {
2018-02-27 04:14:29 +00:00
console.log(`a-switch to ${checked}`);
2019-09-28 12:45:07 +00:00
},
2018-02-27 04:14:29 +00:00
},
2019-09-28 12:45:07 +00:00
};
2018-02-27 04:14:29 +00:00
</script>
```