diff --git a/components/checkbox/Checkbox.vue b/components/checkbox/Checkbox.vue index 33da565c9d..3b0d4cbb67 100755 --- a/components/checkbox/Checkbox.vue +++ b/components/checkbox/Checkbox.vue @@ -95,7 +95,7 @@ export default { }, methods: { onClick(event) { - if (!this.disabled) { + if (!this.disabled && !this.readonly) { let newModelValue; if (this.binary) {