我正在尝试在QuillJS中创建自定义类属性。 我到目前为止:
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');
我明白了:
错误TypeError:BlotClass.create不是函数
我做错了什么?
答案 0 :(得分:5)
在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');