From cfe24b5e8ea9d4d8da70662dd6d058240d732538 Mon Sep 17 00:00:00 2001 From: tim Date: Sat, 6 Sep 2025 13:55:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E4=B8=BA=E5=B0=8F?= =?UTF-8?q?=E5=86=99=E6=8B=BC=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend_nuxt/pages/users/[id].vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend_nuxt/pages/users/[id].vue b/frontend_nuxt/pages/users/[id].vue index 8f9867be0..f1fabe156 100644 --- a/frontend_nuxt/pages/users/[id].vue +++ b/frontend_nuxt/pages/users/[id].vue @@ -368,11 +368,11 @@ const selectedTab = ref( : 'summary', ) const tabs = [ - { key: 'summary', label: '总结', icon: 'ChartLine' }, - { key: 'timeline', label: '时间线', icon: 'AlarmClock' }, - { key: 'following', label: '关注', icon: 'AddUser' }, - { key: 'favorites', label: '收藏', icon: 'Bookmark' }, - { key: 'achievements', label: '勋章', icon: 'MedalOne' }, + { key: 'summary', label: '总结', icon: 'chart-line' }, + { key: 'timeline', label: '时间线', icon: 'alarm-clock' }, + { key: 'following', label: '关注', icon: 'add-user' }, + { key: 'favorites', label: '收藏', icon: 'bookmark' }, + { key: 'achievements', label: '勋章', icon: 'medal-one' }, ] const followTab = ref('followers')