mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +08:00
25 lines
332 B
Markdown
25 lines
332 B
Markdown
<cn>
|
|
#### 基本用法
|
|
简单的checkbox
|
|
</cn>
|
|
|
|
<us>
|
|
#### Basic
|
|
Basic usage of checkbox
|
|
</us>
|
|
|
|
```tpl
|
|
<template>
|
|
<a-checkbox @change="onChange">Checkbox</a-checkbox>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
onChange(e) {
|
|
console.log(`checked = ${e.target.checked}`);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
```
|