nuxt 中使用 vue-quill-editor 富文本编辑器

nuxt 中使用 vue-quill-editor

vue-quill-editor文档

1、安装

npm i /yarn add vue-quill-editor@3.0.6

2、创建文件 vue-quill-editor.js

import Vue from 'vue'
import VueQuillEditor from 'vue-quill-editor/dist/ssr'
Vue.use(VueQuillEditor)

3、nuxt.config.js 引入

css: ['quill/dist/quill.snow.css','quill/dist/quill.bubble.css','quill/dist/quill.core.css'],
plugins: [{ src: '@/plugins/vue-quill-editor', ssr: false }]

4、html 代码结构

<template>
  <div class="editor-box">
    <div
      class="quill-editor"
      :content="content"
      v-quill:myQuillEditor="options"
      :style="cusStyle"
      :width="toolBarwidth"
      @change="handleEditorChange"
    >
    </div>
  </div>
</template>
<script>
  export default {
    props: {
      // 内容
      content: {
        type: String,
        default: ''
      },
      // 配置项
      options: {
        type: Object,
        default () {
          return {}
        }
      },
      // 自定义样式
      cusStyle: {
        type: String,
        default: ''
      },
      // 宽度
      toolBarwidth: {
        type: String,
        default: '500px'
      },
      maxLength: {
        type: Number,
        default: 100
      }
    },
    data () {
      return {
        editorOption: {
          /* quill options */
          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: [] }], //对齐方式
              // ['link', 'image', 'video']
              ['clean'], //清除字体样式
            ],
          }
        }
      }
    },
    mounted () {
      // let quillEditor = document.querySelectorAll('.ql-container')

      // let newArr = Array.from(quillEditor)
      // if (newArr.length < 3) return
      // newArr.forEach(item => {
      //   item.appendChild(this.createSpan())
      // })
      
      this.$nextTick(() => {
        let quill = document.querySelectorAll('.ql-toolbar')
        Array.from(quill).forEach(item => {
          item.style.width = this.toolBarwidth
        })
      })
      
    },
    methods: {
      createSpan () {
        let spana = document.createElement('span')
        spana.className = 'suffix-counter'
        let ema = document.createElement('em')
        ema.innerHTML = `${this.textLength}`
        let txt = document.createTextNode(`/${this.maxLength}`)
        spana.appendChild(ema)
        spana.appendChild(txt)
        return spana
      },
      handleEditorFocus (event) {
        // console.log(event);
        // event.enable(true)
        // if (this.textLength >= this.maxLength) {
        //   event.enable(false) // 在获取焦点的时候禁用
        // }
      },
      handleEditorChange (event) {
        // this.textLength = event.text.length - 1
        // if (this.textLength >= this.maxLength) {
        //   event.quill.enable(false)
        //   return
        // }
        this.$emit('change', event)
      }
    }
  }
</script>
<style lang="scss" scoped>
.editor-box {
  /deep/ .ql-toolbar.ql-snow {
    width: 500px;
  }
  /deep/ .ql-editor {
    min-height: 90px;
  }
  /deep/ .ql-editor ol, .ql-editor ul {
    padding-left: 0;
  }
}
// .ql-toolbar.ql-snow {
//   width: 500px;
// }
// .ql-editor ol, .ql-editor ul {
//   padding-left: 0;
// }

.suffix-counter {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 4px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 12px;
  color: $text-grey-color;
}

</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值