feat(BottomNav): 添加社区链接跳转功能
在底部导航栏中,当用户点击社区链接时,将新标签页打开社区页面。此功能旨在提升用户体验,避免在当前页面跳转导致用户离开当前应用。
Showing
1 changed file
with
4 additions
and
0 deletions
| ... | @@ -73,6 +73,10 @@ const isActive = (path) => { | ... | @@ -73,6 +73,10 @@ const isActive = (path) => { |
| 73 | } | 73 | } |
| 74 | 74 | ||
| 75 | const handleNavClick = (item) => { | 75 | const handleNavClick = (item) => { |
| 76 | + if (item.path === '/community') { | ||
| 77 | + window.open('https://community.mlaj.com', '_blank') | ||
| 78 | + return | ||
| 79 | + } | ||
| 76 | if (item.path === '/profile' && !currentUser.value) { | 80 | if (item.path === '/profile' && !currentUser.value) { |
| 77 | router.push('/login') | 81 | router.push('/login') |
| 78 | return | 82 | return | ... | ... |
-
Please register or login to post a comment