修改侧边栏的平台标题内容与process.env.VITE_APP_TITLE保持同步

This commit is contained in:
RuoYi 2023-06-29 10:25:10 +08:00
parent 9e7d46217a
commit fab5c92d26
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ defineProps({
} }
}) })
const title = ref('若依管理系统'); const title = import.meta.env.VITE_APP_TITLE;
const settingsStore = useSettingsStore(); const settingsStore = useSettingsStore();
const sideTheme = computed(() => settingsStore.sideTheme); const sideTheme = computed(() => settingsStore.sideTheme);
</script> </script>