vue2 vue-quill-editor富文本域使用

下载:npm install vue-quill-editor --save

导入使用的页面:

import { quillEditor } from 'vue-quill-editor'

import 'quill/dist/quill.core.css'

import 'quill/dist/quill.snow.css'

import 'quill/dist/quill.bubble.css'

components: { quillEditor },

调整富文本域头部:

const 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': ['12', '14', '16', '18', '20', '22', '24', '28', '32', '36'] }], // 字体大小

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

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

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

    // [{ font: ['songti'] }], // 字体种类

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

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

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

    // ['myUploadBtn'] // 自定义上传按钮

]

 editorOption: {

                placeholder: '请输入内容......',

                modules: {

                    toolbar:toolbar

                },

            },

页面使用:

<quill-editor v-model="content" ref="myQuillEditor" :options="editorOption" @blur="onEditorBlur($event)"

                    @focus="onEditorFocus($event)" @change="onEditorChange($event)" @ready="onEditorReady($event)">

                </quill-editor>

js方法:

 // 失去焦点事件

        onEditorBlur(quill) {

            console.log('editor blur!', quill)

        },

        // 获得焦点事件

        onEditorFocus(quill) {

            console.log('editor focus!', quill)

        },

        // 准备富文本编辑器

        onEditorReady(quill) {

            console.log('editor ready!', quill)

        },

        // 内容改变事件

        onEditorChange({ quill, html, text }) {

            console.log('editor change!', quill, html, text)

            this.content = html

        },

        myUploadBtnClick (e) {

            this.$refs.aUpload.$children[0].$refs.uploaderRef.onClick()

            console.log(e);

        },

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值