1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-04-30 22:29:01 +08:00

fix: 菜单path跳转判空,close #120

This commit is contained in:
dxmqj200682 2025-03-30 15:43:11 +08:00 committed by GitHub
parent 1eb59b7cad
commit dde25dd7ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,6 +54,7 @@ function handleMenuSelect(key, item) {
})
}
else {
if(!item.path) return
router.push(item.path)
}
}