| | |
| | | <script lang="ts" setup> |
| | | import { computed } from 'vue'; |
| | | |
| | | import { AuthPageLayout } from '../packages/effects/layouts/src'; |
| | | import { preferences } from '../packages/preferences/src'; |
| | | import { AuthPageLayout } from '@vben/layouts'; |
| | | import { preferences } from '@vben/preferences'; |
| | | |
| | | import { $t } from '#/locales'; |
| | | |
| | | const appName = computed(() => preferences.app.name); |
| | | const logo = computed(() => preferences.logo.source); |
| | | declare const __APP_LOGO__: string; |
| | | |
| | | const appName = computed(() => '种植业数字化平台'); |
| | | const logo = computed(() => __APP_LOGO__ || preferences.logo.source); |
| | | const logoDark = computed(() => preferences.logo.sourceDark); |
| | | </script> |
| | | |
| | |
| | | :app-name="appName" |
| | | :logo="logo" |
| | | :logo-dark="logoDark" |
| | | :page-description="$t('authentication.pageDesc')" |
| | | :page-title="$t('authentication.pageTitle')" |
| | | page-description="数字赋能农业 · 科技引领未来" |
| | | page-title="种植业数字化平台" |
| | | > |
| | | <!-- 自定义工具栏 --> |
| | | <!-- <template #toolbar></template> --> |