Fixed #3678 - Checkbox: has an attribute that is not supported by input checkboxes.
parent
26433c3f12
commit
90f073321a
|
@ -95,7 +95,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
onClick(event) {
|
||||
if (!this.disabled) {
|
||||
if (!this.disabled && !this.readonly) {
|
||||
let newModelValue;
|
||||
|
||||
if (this.binary) {
|
||||
|
|
Loading…
Reference in New Issue