vue中的富文本框的使用(vue-quill-editor)

一、安装 vue-quill-editor

npm install vue-quill-editor

二、在main.js中引入

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

三、在模块中引用

<template>
  <div class="boxs">
    <el-upload
      class="avatar-uploader"
      name="file"
      action=""
      :show-file-list="false"
      :data="uploadData"
      :http-request="uploadHttpRequest"
    >
    </el-upload>
    <quill-editor v-model="content" ref="myQuillEditor" :options="editorOption">
    </quill-editor>
    <!-- 富文本内容 -->
    <button v-on:click="saveHtml">保存</button>
  </div>
</template> 
<script>
import { quillEditor } from "vue-quill-editor";
// 工具栏配置
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" }], // 缩进
  // [{'direction': 'rtl'}],                         // 文本方向
  [{ size: ["small", false, "large", "huge"] }], // 字体大小
  [{ header: [1, 2, 3, 4, 5, 6, false] }], // 标题
  [{ color: [] }, { background: [] }], // 字体颜色、字体背景颜色
  [{ font: [] }], // 字体种类
  [{ align: [] }], // 对齐方式
  ["clean"], // 清除文本格式
  ["link", "image", "video"], // 链接、图片、视频
];
export default {
  data() {
    return {
      uploadData: {}, // 图片文件
      content: "", // 内容
      content: null,
      editorOption: {
        placeholder: "请输入文章内容",
        modules: {
          toolbar: {
            container: toolbarOptions,
            handlers: {
              image: function (value) {
                if (value) {
                  // 触发input框选择图片文件
                  document.querySelector(".avatar-uploader input").click();
                } else {
                  this.quill.format("image", false);
                }
              },
            },
          },
        },
      },
    };
  },
  methods: {
    saveHtml(event) {
      //点击保存按钮
      console.log("this.content", this.content);
    },
    uploadHttpRequest(param) {
      console.log(param.file); //发送请求,获取到图片的地址
      let quill = this.$refs.myQuillEditor.quill; // // 获取光标所在位置
      let length = quill.getSelection().index; //插入图片  后面为服务器返回的图片地址
      quill.insertEmbed(
        length,
        "image",
        "https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg"
      );
      quill.setSelection(length + 1);  调整光标到最后
    },
  },
};
</script> 
<style >
.boxs {
  line-height: normal !important;
  height: 500px;
  width: 700px;
  margin: 20px auto;
}
</style>   

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值