我在配置对象工具栏中写按钮,像fontSize一样不起作用
在angular.json
中添加scripts
"node_modules/froala-editor/js/froala_editor.min.js",
"node_modules/jquery/dist/jquery.min.js",
"node_modules/froala-editor/js/plugins.pkgd.min.js",
"node_modules/froala-editor/js/plugins/font_size.min.js",
"node_modules/froala-editor/js/froala_editor.pkgd.min.js"
并将css
添加到angular.json
但它不起作用
Angular 7 我使用froala的官方仓库 https://github.com/froala/angular-froala-wysiwyg
export const FroalaConfig = {
toolbarBottom: true,
charCounterCount: true,
fontSize: ['8', '9', '10', '11', '12', '14', '18', '24', '30', '36', '48', '60', '72', '96'],
toolbarButtons: [
['bold', 'italic', 'underline', 'strikeThrough'],
['subscript', 'fontSize', 'superscript']
],
toolbarButtonsMD: [
['bold', 'italic', 'underline', 'strikeThrough'],
['subscript', 'fontSize', 'superscript']
]
}
我使用此配置对象,并且fontSize在模板中不起作用