feat: 支持动态修改管理后台站点标题
- 从本地存储读取自定义标题,替代硬编码默认标题 - 在布局组件中提供更新标题的方法并注入到设置页面 - 修改站点标题时同步更新本地存储和页面标题
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user