Vue开发--使用vue2-editor制作富文本框

1-安装

npm install --save vue2-editor

2- 使用( main.js )

// Basic Use - Covers most scenarios
import { VueEditor } from 'vue2-editor'
 
// Advanced Use - Hook into Quill's API for Custom Functionality
import { VueEditor, Quill } from 'vue2-editor'


3-在项目中使用

<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> 

参考:https://www.npmjs.com/package/vue2-editor

猜你喜欢

转载自blog.csdn.net/samarket/article/details/91490568