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