Commit 96c8ac08 authored by baiyaaaaa's avatar baiyaaaaa Committed by 杨奕

fix checkbox docs

parent e45572cc
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
return { return {
checkList: ['选中且禁用','复选框 A'], checkList: ['选中且禁用','复选框 A'],
// checkList2: ['复选框 A'], // checkList2: ['复选框 A'],
checked: false, checked: true,
checked1: false, checked1: false,
checked2: true, checked2: true,
isValid: '可用', isValid: '可用',
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
}, },
handleCheckAllChange(event) { handleCheckAllChange(event) {
this.checkedCities = event.target.checked ? cityOptions : []; this.checkedCities = event.target.checked ? cityOptions : [];
this.isIndeterminate = true; this.isIndeterminate = false;
}, },
handleCheckedCitiesChange(value) { handleCheckedCitiesChange(value) {
let checkedCount = value.length; let checkedCount = value.length;
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
```html ```html
<template> <template>
<!-- `checked` 为 true 或 false --> <!-- `checked` 为 true 或 false -->
<el-checkbox v-model="checked" checked>备选项</el-checkbox> <el-checkbox v-model="checked">备选项</el-checkbox>
</template> </template>
<script> <script>
export default { export default {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment