问题
Quill 富文本编辑器粘贴后跳转到顶部
解决
核心主要是设置 scrollingContainer
参数为挂载的 Dom
editor = new Quill(editorDom.value, {
placeholder: '在此输入内容',
scrollingContainer: scrollDom.value
});
:deep(.ql-clipboard) {
position: fixed;
}
Quill 富文本编辑器粘贴后跳转到顶部
核心主要是设置 scrollingContainer
参数为挂载的 Dom
editor = new Quill(editorDom.value, {
placeholder: '在此输入内容',
scrollingContainer: scrollDom.value
});
:deep(.ql-clipboard) {
position: fixed;
}