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

25 lines
332 B
Markdown
Raw Normal View History

2018-03-09 13:26:34 +08:00
<cn>
#### 基本用法
简单的checkbox
</cn>
<us>
#### Basic
Basic usage of checkbox
</us>
2019-10-09 18:32:23 +08:00
```tpl
2018-03-09 13:26:34 +08:00
<template>
2018-03-09 17:50:33 +08:00
<a-checkbox @change="onChange">Checkbox</a-checkbox>
2018-03-09 13:26:34 +08:00
</template>
<script>
2019-09-28 20:45:07 +08:00
export default {
methods: {
onChange(e) {
console.log(`checked = ${e.target.checked}`);
},
2018-03-09 13:26:34 +08:00
},
2019-09-28 20:45:07 +08:00
};
2018-03-09 13:26:34 +08:00
</script>
```