fix readonly prop's does not react to change
parent
8c76a94df0
commit
63df50b6e0
|
@ -75,6 +75,9 @@ export default {
|
||||||
this.reRenderColorKey++;
|
this.reRenderColorKey++;
|
||||||
this.renderValue(newValue);
|
this.renderValue(newValue);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
readonly() {
|
||||||
|
this.handleReadOnlyChange();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
@ -165,6 +168,9 @@ export default {
|
||||||
if (this.quill && this.quill.getModule('toolbar')) {
|
if (this.quill && this.quill.getModule('toolbar')) {
|
||||||
this.$emit('load', { instance: this.quill });
|
this.$emit('load', { instance: this.quill });
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
handleReadOnlyChange() {
|
||||||
|
if (this.quill) this.quill.enable(!this.readonly);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue