我正在使用ngx-quill-editor作为我的角度应用程序的富文本编辑器。 使用“语言”工具Chrome扩展程序时,无法从羽毛笔中获得预期的价值。否则,它可以正常工作。
我没有发现支持语言工具中的鹅毛笔编辑器的任何问题。
使用语言工具时从笔芯编辑器中获得的值是这样的:
@media print and (orientation: portrait) {
@page {
width: 210mm;
}
body {
color: #000;
font-size: 10pt;
widows: 3;
orphans: 3;
}
div {
width: 60%;
}
div:first-of-type
width: 30%;
}
}
当用户在编辑器中输入“ Hello world”时,我应该得到一个类似
你好,世界
但是我没有得到期望的价值。
答案 0 :(得分:0)
您可以像这样将样式作为属性提供:
<quill-editor name="content" [modules]="{toolbar: toolBarOptions}" [style]="{height: '300px'}"></quill-editor>
注意toolbarOptions是相关打字稿中的一个对象