mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-30 15:46:34 +08:00
22 lines
535 B
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>
|