How to use vuejs rich text editor in Laravel
vue2-editor is rich text editor by Quill.js and Vue.js, we will use this editor with laravel.
First of all install this package, as you know this nodejs package so we can install by npm command.
npm install vue2-editor
OR You can use Yarn
yarn add vue2-editor
import { VueEditor } from "vue2-editor";
<vue-editor v-model="content"></vue-editor>
that's it, i hope you have already declared empty content in your data array.
data(){
return{
title:'',
content:'',
}
},