We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52012d4 commit 68ff59cCopy full SHA for 68ff59c
src/layouts/components/Topbar/Tabbar/index.vue
@@ -83,16 +83,19 @@ function contextMenuItems(routeItem: Tabbar.recordRaw) {
83
[
84
{
85
label: '关闭其他标签页',
86
+ icon: 'i-mdi:close',
87
disabled: !tabbar.checkCloseOtherSide(routeItem.tabId),
88
handle: () => tabbar.closeOtherSide(routeItem.tabId),
89
},
90
91
label: '关闭左侧标签页',
92
+ icon: 'i-mdi:arrow-expand-left',
93
disabled: !tabbar.checkCloseLeftSide(routeItem.tabId),
94
handle: () => tabbar.closeLeftSide(routeItem.tabId),
95
96
97
label: '关闭右侧标签页',
98
+ icon: 'i-mdi:arrow-expand-right',
99
disabled: !tabbar.checkCloseRightSide(routeItem.tabId),
100
handle: () => tabbar.closeRightSide(routeItem.tabId),
101
0 commit comments