feat(editor): 支持配置左侧边栏tab style

This commit is contained in:
roymondchen 2024-04-12 20:20:40 +08:00
parent b1e79c1e05
commit 4054c6ed57
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,7 @@
draggable="true"
:key="config.$key ?? index"
:class="{ 'is-active': activeTabName === config.text }"
:style="config.tabStyle || {}"
@click="activeTabName = config.text || `${index}`"
@dragstart="dragstartHandler"
@dragend="dragendHandler(config.$key, $event)"

View File

@ -371,8 +371,10 @@ export interface MenuBarData {
export interface SideComponent extends MenuComponent {
/** 显示文案 */
text: string;
/** tab样式 */
tabStyle?: string | Record<string, any>;
/** vue组件或url */
icon: Component<{}, {}, any>;
icon?: Component<{}, {}, any>;
/** slide 唯一标识 key */
$key: string;