在 QuillJS 中创建自定义 class 属性

Creating a custom class attributer in QuillJS

我正在尝试在 QuillJS 中创建自定义 class 属性器。 我已经走到这一步了:

let config = {
  scope: Parchment.Scope.BLOCK,
};

let MClass = new Parchment.Attributor.Class('mark', 'dom-mark', config);
Quill.register(MClass,true)

但是尝试时:

this.quillEditor.format('mark', 'MarkThisHere');

我得到:

错误类型错误:BlotClass.create 不是函数

我做错了什么?

我在这个 example 中工作。

Parchment = Quill.import('parchment');

let config = {
  scope: Parchment.Scope.BLOCK,
};

let MClass = new Parchment.Attributor.Class('mark', 'dom-mark', config);
Quill.register(MClass,true)

var quill = new Quill('#editor-container', {
  modules: {
    toolbar: [
      [{ header: [1, 2, false] }],
      ['bold', 'italic', 'underline'],
      ['image', 'code-block']
    ]
  },
  placeholder: 'Compose an epic...',
  theme: 'snow'  // or 'bubble'
});

quill.format('mark', 'MarkThisHere');