UNPKG

mdui.editor

Version:

Material Design 样式的富文本编辑器

17 lines (16 loc) 329 B
import MenuNativeAbstract from '../abstracts/menuNativeAbstract'; /** * 加粗 */ class Bold extends MenuNativeAbstract { getCommandName() { return 'bold'; } getElementName() { return 'strong'; } } Bold.icon = 'format_bold'; Bold.title = '粗体'; Bold.disable = ['image']; export default Bold;