Skip to content

Commit

Permalink
#29 - Ckeditor doesn't get content in IE11
Browse files Browse the repository at this point in the history
  • Loading branch information
dangvanthanh committed Jan 19, 2018
1 parent 8bd8bce commit b6db058
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/Ckeditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ export default {
},
watch: {
value (val) {
if (this.instance) {
this.update(val)
}
try {
if (this.instance) {
this.update(val)
}
} catch (e) {}
}
},
mounted () {
Expand Down

0 comments on commit b6db058

Please sign in to comment.