Blame view

Yi.Vben5.Vue3/apps/web-antd/src/layouts/auth.vue 593 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <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);
  </script>
  
  <template>
    <AuthPageLayout
      :app-name="appName"
      :logo="logo"
      :page-description="$t('authentication.pageDesc')"
      :page-title="$t('authentication.pageTitle')"
    >
      <!-- 自定义工具栏 -->
      <!-- <template #toolbar></template> -->
    </AuthPageLayout>
  </template>