diff --git a/dashboard/src2/App.vue b/dashboard/src2/App.vue index 6226cdf..284b300 100644 --- a/dashboard/src2/App.vue +++ b/dashboard/src2/App.vue @@ -192,13 +192,11 @@ const mobileDropdownOptions = computed(() => { options.push({ label: '切换团队', key: 'switch-team', - icon: () => h('i', { class: 'i-lucide-command h-4 w-4' }), }); } options.push({ label: '退出登录', key: 'logout', - icon: () => h('i', { class: 'i-lucide-log-out h-4 w-4' }), }); return options; }); diff --git a/dashboard/src2/components/AppSidebar.vue b/dashboard/src2/components/AppSidebar.vue index 91cf222..be8a5a9 100644 --- a/dashboard/src2/components/AppSidebar.vue +++ b/dashboard/src2/components/AppSidebar.vue @@ -98,13 +98,11 @@ export default { options.push({ label: '切换团队', key: 'switch-team', - icon: () => h('i', { class: 'i-lucide-command h-4 w-4' }), }); } options.push({ label: '退出登录', key: 'logout', - icon: () => h('i', { class: 'i-lucide-log-out h-4 w-4' }), }); return options; });