Creating a custom class attributer in QuillJS

大兔子大兔子 提交于 2019-11-29 15:37:45

问题


I'm trying to create a custom class attributer in QuillJS. I've got this far:

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

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

But when attempting:

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

I get:

ERROR TypeError: BlotClass.create is not a function

What am i doing wrong?


回答1:


Works for me in this 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');


来源:https://stackoverflow.com/questions/44219124/creating-a-custom-class-attributer-in-quilljs

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!