low-code/src/router/guards.ts
2024-07-15 11:54:32 +08:00

9 lines
249 B
TypeScript

import type { NavigationGuardWithThis } from 'vue-router';
const titleGuard: NavigationGuardWithThis<undefined> = (to, from, next) => {
next();
document.title = to.meta.title ? `${to.meta.title} | 悦码` : '悦码';
};
export { titleGuard };