feat: enhance navigation menu with social tab and popover functionality

This commit is contained in:
pa
2025-11-05 16:43:50 +09:00
committed by Natsumi
parent 785736cb51
commit 4f49c961df
3 changed files with 230 additions and 34 deletions

View File

@@ -50,3 +50,10 @@ export const router = createRouter({
export function initRouter(app) {
app.use(router);
}
router.beforeEach((to, from) => {
if (to.path === '/social') {
return false;
}
return true;
});