1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > ckeditor5 vue 字体大小配置 字体颜色 段落对齐API设置

ckeditor5 vue 字体大小配置 字体颜色 段落对齐API设置

时间:2023-08-08 19:18:50

相关推荐

ckeditor5 vue 字体大小配置 字体颜色 段落对齐API设置

ckeditor5字体大小配置,字体颜色设置api

1,ckeditor5中使用api设置选中字体

属性

import CKEditor from '@/common/plugin/ckeditor/ckeditor';CKEditor.create(document.querySelector('#editor'), {licenseKey: '',fontSize: {options: [9,11,13,'default',17,19,21,26,32,40]},}).then(editor => {window.editor = editor;editor.execute('fontSize', { value: '21px' }); //字体大小设置editor.execute('alignment', { value: 'left' }); //字体左右中对齐editor.execute('fontBackgroundColor', { value: 'red' }); //字体左右中对齐}).catch(error => {console.error('Oops, something went wrong!');console.error('Please, report the following error on /ckeditor/ckeditor5/issues with the build id and the error stack trace:');console.warn('Build id: l06xfzwjugq8-r7sznwq8sl7f');console.error(error);});

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。