vue3-vant4-mobile/src/views/login/LoginTitle.vue

22 lines
535 B
Vue

<template>
<div class="flex flex-col items-center justify-center">
<div class="logo enter-y mb-8 mt-8">
<Logo class="!h-30 !w-30" name="logo" />
</div>
<div class="text-darkBlue dark:text-garyWhite enter-y mb-12 text-2xl font-black">
{{ title }}
</div>
</div>
</template>
<script setup lang="ts">
import Logo from '@/components/Logo.vue'
import { useGlobSetting } from '@/hooks/setting'
const globSetting = useGlobSetting()
const { title } = globSetting
</script>
<style scoped lang="less"></style>