兰宝车间质量管理系统-前端
gssong
2024-03-21 f6abd4cf5990d3377c9a7f44f5cff7a284d5da50
src/utils/dynamicTitle.ts
@@ -5,10 +5,10 @@
 * 动态修改标题
 */
export const useDynamicTitle = () => {
   const settingsStore = useSettingsStore();
   if (settingsStore.dynamicTitle) {
      document.title = settingsStore.title + ' - ' + import.meta.env.VITE_APP_TITLE;
   } else {
      document.title = defaultSettings.title as string;
   }
  const settingsStore = useSettingsStore();
  if (settingsStore.dynamicTitle) {
    document.title = settingsStore.title + ' - ' + import.meta.env.VITE_APP_TITLE;
  } else {
    document.title = defaultSettings.title as string;
  }
};