请参考: https://github.com/davidroyer/vue2-editor

基本用法:

首先,使用npm安装 npm install --save vue2-editor

具体代码:

<template>
   <div id="app">
     <vue-editor v-model="content"></vue-editor>
   </div>
 </template>

 <script>
   import { VueEditor } from 'vue2-editor'

   export default {

   components: {
      VueEditor
   },

   data() {
       return {
         content: '<h1>Some initial content</h1>'  
       }
     }
   }
 </script>
效果:



Logo

前往低代码交流专区

更多推荐