import { Boot } from '@wangeditor/editor' import { exp2pdf } from './exportFile' console.warn('此插件注册富文本自定义按钮') // 注册一个保存按钮 class SaveBtn { title = '' iconSvg = '' tag = '' constructor() { this.title = '导出PDF' this.iconSvg = '' this.tag = 'button' } getValue() { return '' } isActive() { return false } isDisabled() { return false } exec() { exp2pdf('exportPDF', '测试' + new Date().toLocaleDateString()) console.log('导出'); } } Boot.registerMenu({ key: 'SaveBtn', factory() { return new SaveBtn() } })