Closed
Description
https://github.com/primefaces/primevue/blob/2.0.0-rc.3/src/components/editor/Editor.vue
Fix: see below
props: {
value: String,
placeholder: String,
readonly: Boolean,
formats: Array,
editorStyle: null
},
...
mounted() {
this.quill = new Quill(this.$refs.editorElement, {
modules: {
toolbar: this.$refs.toolbarElement
},
readOnly: this.readOnly, // change readOnly to readonly
theme: 'snow',
formats: this.formats
});
Activity