feat: update 404 handler

This commit is contained in:
tim
2025-07-14 19:33:20 +08:00
parent e686fcfb23
commit fbe63b3943
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export default {
},
computed: {
hideMenu() {
return ['/login', '/signup'].includes(this.$route.path)
return ['/login', '/signup', '/404'].includes(this.$route.path)
}
}
}