vue 富文本 Vue-Quill-Editor 的使用教程

資料

方法一

方法二 ==(建議使用)==

其他

1昭雌、下載Vue-Quill-Editor

npm install vue-quill-editor --save

2烛卧、下載quill(Vue-Quill-Editor需要依賴(lài))

npm install quill --save

3总放、代碼(1)

<script>
/**
 * 富文本vue-quill-editor 組件
 * name wangkai
 *-------------------設(shè)置文檔----------------
 *---------- 1局雄、toolbar工具欄-模塊名----------
 *  background  --------------  背景顏色
 *  bold  --------------------  加粗
 *  color --------------------  顏色
 *  font  --------------------  字體
 *  code  --------------------  內(nèi)聯(lián)代碼
 *  italic  ------------------  斜體
 *  link  --------------------  鏈接
 *  size  --------------------  大小
 *  strike  ------------------  刪除線
 *  script  ------------------  上標(biāo)/下標(biāo)
 *  underline  ---------------  下劃線
 *  blockquote  --------------  引用
 *  header  ------------------  標(biāo)題
 *  indent  ------------------  縮頸
 *  list  --------------------  列表
 *  align  -------------------  文本對(duì)齊
 *  direction  ---------------  文本方向
 *  code-block  --------------  代碼塊
 *  formula  -----------------  公式
 *  image  -------------------  圖片
 *  video  -------------------  視頻
 *  clean  -------------------  清除字體樣式
 */
import Quill from 'quill';
// quill圖片可拖拽上傳
import { ImageDrop } from 'quill-image-drop-module';

Quill.register('modules/imageDrop', ImageDrop);

export default {
  name: 'the_rich_text',
  data() {
    return {
      data: this.content,
      // toolbar工具欄設(shè)置
      editorOption: {
        modules: {
          toolbar: [
            ['bold', 'italic', 'underline', 'strike'],
            [{ color: [] }, { background: [] }],
            ['link', 'image'],
            ['blockquote', 'code-block'],
            [{ align: [] }],
            [{ list: 'ordered' }, { list: 'bullet' }],
            [{ script: 'sub' }, { script: 'super' }],
            // [{ header: 1 }, { header: 2 }],
            // [{ header: [1, 2, 3, 4, 5, 6, false] }],
            [{ size: ['small', false, 'large', 'huge'] }],
            [{ font: [] }],
            // [{ indent: '-1' }, { indent: '+1' }],
          ],
          imageDrop: true,
        },
      },
    };
  },
  props: {
    // 表格數(shù)據(jù)
    content: {
      type: String,
      default: () => (''),
      required: true,
    },
  },
  methods: {
    // 失去焦點(diǎn)事件
    onEditorBlur() {
      this.$emit('onEditorBlur', this.data);
    },
    // 獲得焦點(diǎn)事件
    onEditorFocus() {
      this.$emit('onEditorFocus', this.data);
    },
    // 編輯器文本發(fā)生變化
    onEditorChange() {
      this.$emit('onEditorChange', this.data);
    },
  },
};
</script>

<template lang="pug">
  .the-rich-text
    quill-editor(
      v-model="data"
      ref="myQuillEditor"
      :options="editorOption"
      @blur="onEditorBlur"
      @focus="onEditorFocus"
      @change="onEditorChange")
</template>

<style lang="stylus" scoped>
.the-rich-text
  width 100%
  margin 20px 0px
  display inline-block
  background #ffffff
</style>

4、代碼(2)

  • 依賴(lài)包
"quill": "^1.3.6",
"quill-image-extend-module": "^1.1.2",
"vue-quill-editor": "^3.0.6",
<script>
/**
 * 富文本 vue-quill-editor 組件
 * Author: wangkai
 */
import { quillEditor, Quill } from 'vue-quill-editor';
import { container, ImageExtend, QuillWatch } from 'quill-image-extend-module';
import 'quill/dist/quill.core.css';
import 'quill/dist/quill.snow.css';
import 'quill/dist/quill.bubble.css';

Quill.register('modules/ImageExtend', ImageExtend);

export default {
  name: 'the_rich_text',
  components: {
    quillEditor,
  },
  data() {
    return {
      content: '',
    };
  },
  model: {
    event: 'change',
  },
  props: {
    value: {
      type: String,
      default: () => (''),
      required: true,
    },
    action: {
      type: String,
      default: null,
    },
    name: {
      type: String,
      default: 'file',
    },
    headers: {
      type: Object,
      default: () => ({}),
    },
    size: {
      type: Number,
      default: null,
    },
    formData: {
      type: Object,
      default: () => ({}),
    },
  },
  computed: {
    options() {
      const { name, action, headers, size } = this;
      return {
        modules: {
          ImageExtend: {
            loading: true,
            name,
            action,
            size,
            headers: (xhr) => {
              Object.entries(headers).forEach((ary) => {
                xhr.setRequestHeader(ary[0], ary[1]);
              });
            },
            response: res => res.url,
            sizeError() {

            },
            start: () => {

            },
            end: () => {
            },
            error: () => {

            },
            success: () => {

            },
            change: (xhr, formData) => {
              Object.entries(this.formData).forEach((ary) => {
                formData.append(ary[0], ary[1]);
              });
            },
          },
          toolbar: {
            container,
            handlers: {
              image() {
                QuillWatch.emit(this.quill.id);
              },
            },
          },
        },
      };
    },
  },
  methods: {
    // 失去焦點(diǎn)事件
    onEditorBlur(...args) {
      this.$emit('blur', ...args);
    },
    // 獲得焦點(diǎn)事件
    onEditorFocus(...args) {
      this.$emit('focus', ...args);
    },
    // 編輯器文本發(fā)生變化
    onEditorChange({ html }) {
      this.$emit('change', html);
    },
  },
};
</script>

<template lang="pug">
  .the-rich-text
    quill-editor(
      ref="myQuillEditor"
      :value="value"
      :options="options"
      @blur="onEditorBlur"
      @focus="onEditorFocus"
      @change="onEditorChange")
</template>

<style lang="stylus" scoped>
.the-rich-text
  width 100%
  margin 20px 0px
  display inline-block
  background #ffffff
</style>

5有额、組件使用

//-富文本
  the-rich-text(
    v-model="data"
    action="http://api.pay-star.com/admin/images"
    :headers="{ 'company-token': '4P6snTNhfADVykzxYkLAvs' }")

修改后的組件(支持自定義設(shè)置toolbar-工具欄)

6巍佑、代碼(3)

<script>
/**
 * 富文本 vue-quill-editor 組件
 * Author: wangkai
 */
import { quillEditor, Quill } from 'vue-quill-editor';
import { ImageExtend, QuillWatch } from 'quill-image-extend-module';
import 'quill/dist/quill.core.css';
import 'quill/dist/quill.snow.css';
import 'quill/dist/quill.bubble.css';

Quill.register('modules/ImageExtend', ImageExtend);

export default {
  name: 'the_rich_text',
  components: {
    quillEditor,
  },
  data() {
    return {
      content: '',
    };
  },
  model: {
    event: 'change',
  },
  props: {
    value: {
      type: String,
      default: () => (''),
      required: true,
    },
    action: {
      type: String,
      default: null,
    },
    name: {
      type: String,
      default: 'file',
    },
    headers: {
      type: Object,
      default: () => ({}),
    },
    size: {
      type: Number,
      default: null,
    },
    formData: {
      type: Object,
      default: () => ({}),
    },
    container: {
      type: Array,
      default: () => ([]),
    },
  },
  computed: {
    options() {
      const { name, action, headers, size, container } = this;
      return {
        modules: {
          ImageExtend: {
            loading: true,
            name,
            action,
            size,
            headers: (xhr) => {
              Object.entries(headers).forEach((ary) => {
                xhr.setRequestHeader(ary[0], ary[1]);
              });
            },
            response: res => res.url,
            sizeError() {

            },
            start: () => {

            },
            end: () => {
            },
            error: () => {

            },
            success: () => {

            },
            change: (xhr, formData) => {
              Object.entries(this.formData).forEach((ary) => {
                formData.append(ary[0], ary[1]);
              });
            },
          },
          toolbar: {
            container,
            handlers: {
              image() {
                QuillWatch.emit(this.quill.id);
              },
            },
          },
        },
      };
    },
  },
  methods: {
    // 失去焦點(diǎn)事件
    onEditorBlur(...args) {
      this.$emit('blur', ...args);
    },
    // 獲得焦點(diǎn)事件
    onEditorFocus(...args) {
      this.$emit('focus', ...args);
    },
    // 編輯器文本發(fā)生變化
    onEditorChange({ html }) {
      this.$emit('change', html);
    },
  },
};
</script>

<template lang="pug">
  .the-rich-text
    quill-editor(
      ref="myQuillEditor"
      :value="value"
      :options="options"
      @blur="onEditorBlur"
      @focus="onEditorFocus"
      @change="onEditorChange")
</template>

<style lang="stylus" scoped>
.the-rich-text
  width 100%
  margin 20px 0px
  display inline-block
  background #ffffff
</style>

7热某、組件使用(修改后)

//-富文本-HTML
  the-rich-text(
    v-model="data"
    :container="toolbar", // 添加自定義功能昔馋。
    action="http://api.pay-star.com/admin/images"
    :headers="{ 'company-token': '4P6snTNhfADVykzxYkLAvs' }")
  • 設(shè)置文檔
 * 富文本vue-quill-editor 組件
 * name wangkai
 *-------------------設(shè)置文檔----------------
 *---------- 1秘遏、toolbar工具欄-模塊名----------
 *  background  --------------  背景顏色
 *  bold  --------------------  加粗
 *  color --------------------  顏色
 *  font  --------------------  字體
 *  code  --------------------  內(nèi)聯(lián)代碼
 *  italic  ------------------  斜體
 *  link  --------------------  鏈接
 *  size  --------------------  大小
 *  strike  ------------------  刪除線
 *  script  ------------------  上標(biāo)/下標(biāo)
 *  underline  ---------------  下劃線
 *  blockquote  --------------  引用
 *  header  ------------------  標(biāo)題
 *  indent  ------------------  縮頸
 *  list  --------------------  列表
 *  align  -------------------  文本對(duì)齊
 *  direction  ---------------  文本方向
 *  code-block  --------------  代碼塊
 *  formula  -----------------  公式
 *  image  -------------------  圖片
 *  video  -------------------  視頻
 *  clean  -------------------  清除字體樣式
  • 數(shù)據(jù)結(jié)構(gòu)
toolbar: [
    ['bold', 'italic', 'underline', 'strike'],
    [{ color: [] }, { background: [] }],
    ['link', 'image'],
    ['blockquote', 'code-block'],
    [{ align: [] }],
    [{ list: 'ordered' }, { list: 'bullet' }],
    [{ script: 'sub' }, { script: 'super' }],
    // [{ header: 1 }, { header: 2 }],
    // [{ header: [1, 2, 3, 4, 5, 6, false] }],
    [{ size: ['small', false, 'large', 'huge'] }],
    [{ font: [] }],
    // [{ indent: '-1' }, { indent: '+1' }],
  ],
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末洋侨,一起剝皮案震驚了整個(gè)濱河市倦蚪,隨后出現(xiàn)的幾起案子陵且,更是在濱河造成了極大的恐慌聊疲,老刑警劉巖沪悲,帶你破解...
    沈念sama閱讀 216,372評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件贡珊,死亡現(xiàn)場(chǎng)離奇詭異飞崖,居然都是意外死亡固歪,警方通過(guò)查閱死者的電腦和手機(jī)牢裳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén)蒲讯,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)判帮,“玉大人晦墙,你說(shuō)我怎么就攤上這事肴茄」烟担” “怎么了拦坠?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,415評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵贞滨,是天一觀的道長(zhǎng)疲迂。 經(jīng)常有香客問(wèn)我尤蒿,道長(zhǎng),這世上最難降的妖魔是什么尾组? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,157評(píng)論 1 292
  • 正文 為了忘掉前任呵萨,我火速辦了婚禮潮峦,結(jié)果婚禮上勇婴,老公的妹妹穿的比我還像新娘耕渴。我一直安慰自己橱脸,他們只是感情好添诉,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布吻商。 她就那樣靜靜地躺著艾帐,像睡著了一般柒爸。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上乐横,一...
    開(kāi)封第一講書(shū)人閱讀 51,125評(píng)論 1 297
  • 那天,我揣著相機(jī)與錄音催什,去河邊找鬼宰睡。 笑死,一個(gè)胖子當(dāng)著我的面吹牛宠默,可吹牛的內(nèi)容都是我干的搀矫。 我是一名探鬼主播艾君,決...
    沈念sama閱讀 40,028評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼权她!你這毒婦竟也來(lái)了隅要?” 一聲冷哼從身側(cè)響起步清,我...
    開(kāi)封第一講書(shū)人閱讀 38,887評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤廓啊,失蹤者是張志新(化名)和其女友劉穎谴轮,沒(méi)想到半個(gè)月后第步,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體粘都,經(jīng)...
    沈念sama閱讀 45,310評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡驯杜,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評(píng)論 2 332
  • 正文 我和宋清朗相戀三年滚局,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了顽频。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片糯景。...
    茶點(diǎn)故事閱讀 39,690評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡最住,死狀恐怖怠惶,靈堂內(nèi)的尸體忽然破棺而出策治,到底是詐尸還是另有隱情通惫,我是刑警寧澤履腋,帶...
    沈念sama閱讀 35,411評(píng)論 5 343
  • 正文 年R本政府宣布遵湖,位于F島的核電站奄侠,受9級(jí)特大地震影響垄潮,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜旅急,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評(píng)論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望谣辞。 院中可真熱鬧,春花似錦句占、人聲如沸纱烘。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)变骡。三九已至,卻和暖如春渊胸,著一層夾襖步出監(jiān)牢的瞬間翎猛,已是汗流浹背切厘。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,812評(píng)論 1 268
  • 我被黑心中介騙來(lái)泰國(guó)打工疫稿, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留遗座,地道東北人途蒋。 一個(gè)月前我還...
    沈念sama閱讀 47,693評(píng)論 2 368
  • 正文 我出身青樓懊烤,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親冤馏。 傳聞我的和親對(duì)象是個(gè)殘疾皇子逮光,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容