When I use the tui. Editor, I cannot use the V-Model binding value in the VUE, it has no effect
<editor v-model="ruleForm.content" />
script
data() {
return {
ruleForm: {
title: '',
description: '',
'content': 'my is editor!!!!'
},
},
}
Can someone help me????
It really depends on what editor you are using. I recommend you check their documentation for events. In my case, I used suneditor and i had to do:
+ editor.onChange = (content, core) => app['content'] = content
;as opposed to:
<textarea v-model="content"></textarea>
and that's how I did my own model binding. I hope this helps.