feat: 离线图标功能 & 一些改造

This commit is contained in:
dap
2024-11-06 16:21:31 +08:00
parent e0588234ee
commit 2a51d8387c
7 changed files with 84 additions and 16 deletions

View File

@@ -5,7 +5,12 @@ import { useRouter } from 'vue-router';
import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '@vben/constants';
import { useWatermark } from '@vben/hooks';
import { BookOpenText, CircleHelp, MdiGithub, ProfileIcon } from '@vben/icons';
import {
BookOpenText,
CircleHelp,
GitHubOutlined,
UserOutlined,
} from '@vben/icons';
import {
BasicLayout,
LockScreen,
@@ -47,7 +52,7 @@ const menus = computed(() => {
handler: () => {
router.push('/profile');
},
icon: ProfileIcon,
icon: UserOutlined,
text: $t('ui.widgets.profile'),
},
{
@@ -56,7 +61,7 @@ const menus = computed(() => {
target: '_blank',
});
},
icon: MdiGithub,
icon: GitHubOutlined,
text: 'GitHub',
},
{