vue-quill-editor 清除黏贴的文本自带样式,且只允许黏贴文本

发布时间:2024年01月02日

在module的粘贴板里添加一个匹配器

  modules: {
            toolbar: false,
            clipboard: {
              // 粘贴过滤
              matchers: [[Node.ELEMENT_NODE, this.HandleCustomMatcher]]
              // ['img', this.HandleCustomMatcher2]
            },
          },
 let ops = []
          Delta.ops.forEach(op => {
            if (op.insert && typeof op.insert === 'string') {
              ops.push({
                insert: op.insert,
              })
            } else {
              // this.$message({
              //   message: '不允许粘贴图片',
              //   type: 'warning'
              // })
            }
          })
          Delta.ops = ops
          return Delta
文章来源:https://blog.csdn.net/L221545/article/details/135344989
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。