vue quill富文本添加行高

直接上源码

<template>

  <div>

    <el-upload

      :action="uploadUrl"

      :before-upload="handleBeforeUpload"

      :on-success="handleUploadSuccess"

      :on-error="handleUploadError"

      name="file"

      :show-file-list="false"

      style="display: none"

      ref="upload"

      v-if="this.type == 'url'"

    >

    </el-upload>

    <div class="editor" ref="editor" :style="styles"></div>

  </div>

</template>

<script>

import Quill from "quill";

import "quill/dist/quill.core.css";

import "quill/dist/quill.snow.css";

import "quill/dist/quill.bubble.css";

// import { getToken } from '@/utils/auth' //如果你的接口需要token的话打开这行

import { uploadUrl } from '@/config/env';

放在 init里面有时初始化会失效 直接放在最外面

  const Parchment = Quill.import("parchment");

  class lineHeightAttributor extends Parchment.Attributor.Class {}

  const lineHeightStyle = new lineHeightAttributor(

    "lineheight",

    "ql-lineheight",

    {

      scope: Parchment.Scope.INLINE,

      whitelist: ["", "1", "1-5", "1-75", "2", "3", "4", "5"],

    }

  );

  Quill.register({ "formats/lineHeight": lineHeightStyle }, true);

export default {

  name: "Editor",

  props: {

    /* 编辑器的内容 */

    value: {

      type: String,

      default: "",

    },

    /* 高度 */

    height: {

      type: Number,

      default: null,

    },

    /* 最小高度 */

    minHeight: {

      type: Number,

      default: null,

    },

    /* 只读 */

    readOnly: {

      type: Boolean,

      default: false,

    },

    // 上传文件大小限制(MB)

    fileSize: {

      type: Number,

      default: 5,

    },

    /* 类型(base64格式、url格式) */

    type: {

      type: String,

      default: "url",

    }

  },

  data() {

    return {

      uploadUrl, // 上传的图片服务器地址

      Quill: null,

      currentValue: "",

      options: {

        theme: "snow",

        bounds: document.body,

        debug: "warn",

        modules: {

          // 工具栏配置

          toolbar: [

            ["bold", "italic", "underline", "strike"],       // 加粗 斜体 下划线 删除线

            ["blockquote", "code-block"],                    // 引用  代码块

            [{ list: "ordered" }, { list: "bullet" }],       // 有序、无序列表

            [{ indent: "-1" }, { indent: "+1" }],            // 缩进

            [{ size: ["small", false, "large", "huge"] }],   // 字体大小

            [{ header: [1, 2, 3, 4, 5, 6, false] }],         // 标题

            [{ color: [] }, { background: [] }],             // 字体颜色、字体背景颜色

            [{ align: [] }],                                 // 对齐方式

            ["clean"],                                       // 清除文本格式

            ["link", "image", "video"],                      // 链接、图片、视频

            [{ lineheight: ["", "1", "1-5", "1-75", "2", "3", "4", "5"] }], //行高

          ],

        },

        placeholder: "请输入内容",

        readOnly: this.readOnly,

      },

    };

  },

  computed: {

    styles() {

      let style = {};

      if (this.minHeight) {

        style.minHeight = `${this.minHeight}px`;

      }

      if (this.height) {

        style.height = `${this.height}px`;

      }

      return style;

    },

  },

  watch: {

    value: {

      handler(val) {

        if (val !== this.currentValue) {

          this.currentValue = val === null ? "" : val;

          if (this.Quill) {

            this.Quill.pasteHTML(this.currentValue);

          }

        }

      },

      immediate: true,

    },

  },

  mounted() {

    this.init();

  },

  beforeDestroy() {

    this.Quill = null;

  },

  methods: {

    init() {

      const editor = this.$refs.editor;

      this.Quill = new Quill(editor, this.options);

      // 如果设置了上传地址则自定义图片上传事件

      if (this.type == 'url') {

        let toolbar = this.Quill.getModule("toolbar");

        toolbar.addHandler("image", (value) => {

          this.uploadType = "image";

          if (value) {

            this.$refs.upload.$children[0].$refs.input.click();

          } else {

            this.quill.format("image", false);

          }

        });

      }


      //禁用编辑器,防止页面自动滚动到编辑器位置

      this.Quill.enable(false);

      // 编辑器绑定内容,如修改的时候原有的内容

      this.Quill.pasteHTML(this.currentValue);

      setTimeout(() => {

        this.Quill.blur();

        this.Quill.enable(true);

      }, 1500);      this.Quill.on("text-change", (delta, oldDelta, source) => {

        const html = this.$refs.editor.children[0].innerHTML;

        const text = this.Quill.getText();

        const quill = this.Quill;

        this.currentValue = html;

        this.$emit("input", html);

        this.$emit("on-change", { html, text, quill });

      });

      this.Quill.on("text-change", (delta, oldDelta, source) => {

        this.$emit("on-text-change", delta, oldDelta, source);

      });

      this.Quill.on("selection-change", (range, oldRange, source) => {

        this.$emit("on-selection-change", range, oldRange, source);

      });

      this.Quill.on("editor-change", (eventName, ...args) => {

        this.$emit("on-editor-change", eventName, ...args);

      });

    },

    // 上传前校检格式和大小

    handleBeforeUpload(file) {

      if (this.fileSize) {

        const isLt = file.size / 1024 / 1024 < this.fileSize;

        if (!isLt) {

          this.$message.error(`上传文件大小不能超过 ${this.fileSize} MB!`);

          return false;

        }

      }

      return true;

    },

    handleUploadSuccess(res, file) {

      // 获取富文本组件实例

      let quill = this.Quill;

      // 如果上传成功

      if (res.code == "001") {

        // 获取光标所在位置

        let length = quill.getSelection().index;

        // 插入图片  res.url为服务器返回的图片地址

        quill.insertEmbed(length, "image", res.data);

        // 调整光标到最后

        quill.setSelection(length + 1);

      } else {

        this.$message.error("图片插入失败");

      }

    },

    handleUploadError() {

      this.$message.error("图片插入失败");

    },

  },

};

</script>

<style>

.editor,

.ql-toolbar {

  white-space: pre-wrap !important;

  line-height: normal !important;

}

.quill-img {

  display: none;

}

.ql-snow .ql-tooltip[data-mode="link"]::before {

  content: "请输入链接地址:";

}

.ql-snow .ql-tooltip.ql-editing a.ql-action::after {

  border-right: 0px;

  content: "保存";

  padding-right: 0px;

}

.ql-snow .ql-tooltip[data-mode="video"]::before {

  content: "请输入视频地址:";

}

.ql-snow .ql-picker.ql-size .ql-picker-label::before,

.ql-snow .ql-picker.ql-size .ql-picker-item::before {

  content: "14px";

}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]::before,

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {

  content: "10px";

}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]::before,

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {

  content: "18px";

}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]::before,

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {

  content: "32px";

}

.ql-snow .ql-picker.ql-header .ql-picker-label::before,

.ql-snow .ql-picker.ql-header .ql-picker-item::before {

  content: "文本";

}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {

  content: "标题1";

}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {

  content: "标题2";

}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {

  content: "标题3";

}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {

  content: "标题4";

}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {

  content: "标题5";

}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {

  content: "标题6";

}

.ql-snow .ql-picker.ql-font .ql-picker-label::before,

.ql-snow .ql-picker.ql-font .ql-picker-item::before {

  content: "标准字体";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {

  content: "衬线字体";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {

  content: "等宽字体";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item::before {

  content: "行高";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label[data-value="1"]::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item[data-value="1"]::before {

  content: "1";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label[data-value="1-5"]::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item[data-value="1-5"]::before {

  content: "1.5";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label[data-value="1-75"]::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item[data-value="1-75"]::before {

  content: "1.75";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label[data-value="2"]::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item[data-value="2"]::before {

  content: "2";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label[data-value="3"]::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item[data-value="3"]::before {

  content: "3";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label[data-value="4"]::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item[data-value="4"]::before {

  content: "4";

}

.ql-snow .ql-picker.ql-lineheight .ql-picker-label[data-value="5"]::before,

.ql-snow .ql-picker.ql-lineheight .ql-picker-item[data-value="5"]::before {

  content: "5";

}

.ql-snow .ql-picker.ql-lineheight {

  width: 70px;

}

.ql-snow .ql-editor .ql-lineheight-1 {

  line-height: 1;

}

.ql-snow .ql-editor .ql-lineheight-1-5 {

  line-height: 1.5;

}

.ql-snow .ql-editor .ql-lineheight-1-75 {

  line-height: 1.75;

}

.ql-snow .ql-editor .ql-lineheight-2 {

  line-height: 2;

}

.ql-snow .ql-editor .ql-lineheight-3 {

  line-height: 3;

}

.ql-snow .ql-editor .ql-lineheight-4 {

  line-height: 4;

}

.ql-snow .ql-editor .ql-lineheight-5 {

  line-height: 5;

}

</style>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容