docs: change this.value to value in the vue examples with custom v-model (#1813)

This commit is contained in:
Lia Va
2021-09-07 12:23:43 +03:00
committed by GitHub
parent b386728f35
commit 67ce72a9ee
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ export default {
return
}
this.editor.commands.setContent(this.value, false)
this.editor.commands.setContent(value, false)
},
},

View File

@@ -174,7 +174,7 @@ export default {
return
}
this.editor.commands.setContent(this.modelValue, false)
this.editor.commands.setContent(value, false)
},
},