npm install vue2-editor import Vue2Editor from "vue2-editor" Vue.use(Vue2Editor)
<template> <vue-editor v-model="content" /> </template> <script> import { VueEditor } from "vue2-editor" export default { components: { VueEditor }, data: () => ({ content: "<h1>Hello</h1>" }) } </script>