diff --git a/package.json b/package.json index 04acadb..ba92fc6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-quill", - "version": "1.4.0", + "version": "1.5.0-0", "description": "Vue quill component and filter", "main": "vue-quill.js", "browserify": { diff --git a/src/Quill.vue b/src/Quill.vue index 6279c25..2e59e45 100644 --- a/src/Quill.vue +++ b/src/Quill.vue @@ -88,7 +88,7 @@ if (this.content && this.content !== '') { if (this.output != 'delta') { - this.editor.pasteHTML(this.content) + this.editor.root.innerHTML = this.content } else { this.editor.setContents(this.content) }