欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Vue基于vue-quill-editor富文本编辑器使用心得

程序员文章站 2023-11-14 20:50:58
vue-quill-editor的guthub,现在市面上有很多的富文本编辑器,我个人还是非常推荐vue自己家的vue-quill-deitor,虽然说只支持ie10+,但...

vue-quill-editor的guthub,现在市面上有很多的富文本编辑器,我个人还是非常推荐vue自己家的vue-quill-deitor,虽然说只支持ie10+,但这种问题,帅给别人吧!

那么我们直击正题,在vue中使用quill呢,我们需要npm进行安装,安装命令如下:

npm install vue-quill-editor

再安装依赖项

npm install quill

使用:

在main.js中进行引入

import vue from 'vue'
import vuequilleditor from 'vue-quill-editor'
import 'quill/dist/quill.core.css'
import 'quill/dist/quill.snow.css'
import 'quill/dist/quill.bubble.css'
 
vue.use(vuequilleditor)

下面的css一定还要引用,否则编辑器将会没有css。

在vue页面中代码如下:

<template>
 <div class="edit_container">
  <quill-editor 
   v-model="content" 
   ref="myquilleditor" 
   :options="editoroption" 
   @blur="oneditorblur($event)" @focus="oneditorfocus($event)"
   @change="oneditorchange($event)">
  </quill-editor>
  <button v-on:click="savehtml">保存</button>
 </div> 
</template>

<script>
export default {
 name: 'app',
 data(){
  return {
   content: `<p>hello world</p>`,
   editoroption: {}
  }
 },computed: {
  editor() {
   return this.$refs.myquilleditor.quill;
  },
 },methods: {
  oneditorready(editor) { // 准备编辑器
  },
  oneditorblur(){}, // 失去焦点事件
  oneditorfocus(){}, // 获得焦点事件
  oneditorchange(){}, // 内容改变事件
  savehtml:function(event){
   alert(this.content);
  }
 }
}
</script>

<style>
#app {
 font-family: 'avenir', helvetica, arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 text-align: center;
 color: #2c3e50;
 margin-top: 60px;
}
</style>

其中的v-model就是我们自己的html代码,你可以将这个html直接放到数据库,这样也就没有什么问题了。如果想要禁用编辑器可以通过以下代码:

oneditorfocus(val,editor){ // 富文本获得焦点时的事件
  console.log(val); // 富文本获得焦点时的内容
  editor.enable(false); // 在获取焦点的时候禁用
 }

主题设置

在vue项目中,具体引入quill的文件中,需要使用哪种主题就写哪个。默认是snow主题的。

data(){
  return {
   content: `<p>hello world</p>`,
   editoroption: {
    theme:'snow'
   }
  }
 }

工具栏设置

modules:{
   toolbar:[
    ['bold', 'italic', 'underline', 'strike'], //加粗,斜体,下划线,删除线
    ['blockquote', 'code-block'],  //引用,代码块
 
 
    [{ 'header': 1 }, { 'header': 2 }],  // 标题,键值对的形式;1、2表示字体大小
    [{ 'list': 'ordered'}, { 'list': 'bullet' }],  //列表
    [{ 'script': 'sub'}, { 'script': 'super' }], // 上下标
    [{ 'indent': '-1'}, { 'indent': '+1' }],  // 缩进
    [{ 'direction': 'rtl' }],    // 文本方向
 
 
    [{ 'size': ['small', false, 'large', 'huge'] }], // 字体大小
    [{ 'header': [1, 2, 3, 4, 5, 6, false] }],  //几级标题
 
 
    [{ 'color': [] }, { 'background': [] }],  // 字体颜色,字体背景颜色
    [{ 'font': [] }],  //字体
    [{ 'align': [] }], //对齐方式
 
 
    ['clean'], //清除字体样式
    ['image','video'] //上传图片、上传视频
 
   ]
   },
   theme:'snow'
  }
  }

图片推拽上传

需要安装  quill-image-drop-module 模块,那么改一下imagedrop设置为true,你就可以把你电脑上的图片网上一坨就可以了。

import { quilleditor } from 'vue-quill-editor'
import * as quill from 'quill' //引入编辑器
import { imagedrop } from 'quill-image-drop-module';
quill.register('modules/imagedrop', imagedrop);
export default {
 name: 'app',
 data(){ 
  return{
  editoroption:{
   modules:{
   imagedrop:true, 
   },
   theme:'snow'
  }
  }
 }

那上传文件那你就不用想了,你也许想先把图片放上去,其实这个文件托上去就已经是个base64了,等你在前台读数的时候直接decode就好~

详解Vue基于vue-quill-editor富文本编辑器使用心得

图片调整大小imageresize

return{
  editoroption:{
   modules:{
        imageresize: {}
   },
   theme:'snow'
  }
  }

以上就是我对vue-quill-editor的认识, 希望对大家的学习有所帮助,也希望大家多多支持。