vue 使用quill-editor富文本编辑框

1、安装插件

npm install vue-quill-editor --save

2、在main.js中引入

import VueQuillEditor from 'vue-quill-editor'
import 'quill/dist/quill.snow.css'
Vue.use(VueQuillEditor);

3、在需要引入富文本框的页面

<quill-editor class="editor" v-model="form.content">
    <el-input
        type="textarea"
        auto-complete="off"
        :disabled="isChange" 
    >
   </el-input>
</quill-editor>

// 写在在script里面,与export default 同级
const toolbarOptions = [
  ["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" }], // 缩进
  [{ header: [1, 2, 3, 4, 5, 6, false] }], // 标题
  [{ color: [] }, { background: [] }], // 字体颜色、字体背景颜色
  [{ font: [] }], // 字体种类
  [{ align: [] }], // 对齐方式
  ["clean"], // 清除文本格式
  ["link", "image", 'video'], // 链接、图片、视频 ['link', 'image', 'video']
];


      // 在data里定义
      isChange: false,
      editorOption: {
        theme: "snow", // or 'bubble'
        placeholder: "请在这里输入...",
        modules: {
          toolbar: {
            container: toolbarOptions,
          },
        },
      },

4、在显示富文本框所编辑内容的页面上

        <el-row class="content ql-container ql-snow" v-if="form.content">
          <dl class="ql-editor" v-html="form.content">
            {{ form.content }}
          </dl>
        </el-row>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值