mdui.editor
Version:
Material Design 样式的富文本编辑器
21 lines (16 loc) • 369 B
text/typescript
import MenuNativeAbstract from '../abstracts/menuNativeAbstract';
/**
* 斜体
*/
class Italic extends MenuNativeAbstract {
static icon = 'format_italic';
static title = '斜体';
static disable = ['image'];
protected getCommandName(): string {
return 'italic';
}
protected getElementName(): string {
return 'em';
}
}
export default Italic;