gpt4 book ai didi

quill - 在 QuillJS 中创建自定义类属性

转载 作者:行者123 更新时间:2023-12-01 10:29:31 27 4
gpt4 key购买 nike

我正在尝试在 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');

我得到:

错误类型错误: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');

关于quill - 在 QuillJS 中创建自定义类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44219124/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com