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