feat: 支持动态修改管理后台站点标题

- 从本地存储读取自定义标题,替代硬编码默认标题
- 在布局组件中提供更新标题的方法并注入到设置页面
- 修改站点标题时同步更新本地存储和页面标题
This commit is contained in:
anghunk
2026-02-05 16:18:10 +08:00
parent 5a0ecdaa91
commit 2a8d73dff9
3 changed files with 26 additions and 5 deletions

View File

@@ -71,7 +71,8 @@ export const router = createRouter({
});
router.beforeEach((to, from, next) => {
const defaultTitle = 'CWD 评论系统';
const storedTitle = localStorage.getItem('cwd_admin_site_title');
const defaultTitle = storedTitle || 'CWD 评论系统';
if (to.meta && to.meta.title) {
document.title = (to.meta.title + ' - ' + defaultTitle) as string;
} else {