26 lines
882 B
Vue
26 lines
882 B
Vue
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
|
|
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);
|
|
// const logo = 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/logo.png?Expires=1734595037&OSSAccessKeyId=TMP.3KhpnCAjxkdTGWSj1ZCdYe3e9c6MBfEVZwN1CiHdUKUAT2D1mPEpACYgYMkUiQDVqy9Zqb7VqgUoh21W37FC3CztogHJPN&Signature=KmymeelO2OZxaAmvm2ACDK5UfF8%3D';
|
|
</script>
|
|
|
|
<template>
|
|
<AuthPageLayout
|
|
:app-name="appName"
|
|
:logo="logo"
|
|
:page-description="$t('authentication.pageDesc')"
|
|
:page-title="$t('authentication.pageTitle')"
|
|
:version="preferences.app.version"
|
|
>
|
|
<!-- 自定义工具栏 -->
|
|
<!-- <template #toolbar></template> -->
|
|
</AuthPageLayout>
|
|
</template>
|