0👍
Vue editor just works internal with divs, add a hidden field with your original data
<template>
<vue-editor v-model="content" :editorToolbar="customToolbar">
<input type="hidden" name="content" v-bind:value="content" />
<slot></slot>
</vue-editor>
</template>
Source:stackexchange.com