我正在尝试根据此处的格式 API 加载 quill 以仅支持某些格式:http: //quilljs.com/docs/formats/
但是每当我添加格式键时,我都会收到错误
TypeError: Cannot read property 'config' of undefined
这是初始化 quill 的代码。如果我注释掉格式键,它就可以工作。
@editor = new Quill(@find('.quill-editor'),
formats: ['bold']
modules:
placeholder:
text: "Enter Text"
style:
color: '#A9A9A9'
'authorship':
authorId: username
enabled: true
toolbar:
container: @find('.quill-toolbar')
"link-tooltip": true,
#'placeholder': 'Enter Text'
#'image-tooltip': true
theme: "snow"
)
有什么问题。为什么 quill 不喜欢格式键?