hookehuyr

feat(BottomNav): 添加社区链接跳转功能

在底部导航栏中,当用户点击社区链接时,将新标签页打开社区页面。此功能旨在提升用户体验,避免在当前页面跳转导致用户离开当前应用。
......@@ -73,6 +73,10 @@ const isActive = (path) => {
}
const handleNavClick = (item) => {
if (item.path === '/community') {
window.open('https://community.mlaj.com', '_blank')
return
}
if (item.path === '/profile' && !currentUser.value) {
router.push('/login')
return
......