[Vuejs]-How to submit a vue component in Laravel blade?

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>

Leave a comment