如题:
当界面足够显示时:
当界面不够显示时:
需求:设置页面不勾选显示时自定义菜单的样式
红框处为自定义按钮
相关代码如下:
const editModel = {
title: '编辑模式',
text: '编辑模式',
iconClass: 'ribbon-button-insertfunction',
bigButton: 'true',
commandName: 'editModel',
execute: async () => {
},
}
const modelButton = {
label: '模式切换',
thumbnailClass: 'ribbon-panel-group-content',
commandGroup: { children: [{ direction: 'horizontal', commands: ['editModel'], },], },
}
|