Is there a way to bind the input value while using toast-ui vue-editor since it doesn't support v-model? Here is my setup for toast-ui:
import '@toast-ui/editor/dist/toastui-editor.css';
import { Editor } from '@toast-ui/vue-editor';
export default {
components: {
editor: Editor
}
}
<editor
:initialValue="form.explanation"
height="500px"
initialEditType="markdown"
previewStyle="vertical"
ref="toastuiEditor"
/>
I am looking for a solution to bind my form data and save it to the database.