mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-12 12:16:38 +08:00
38 lines
918 B
Vue
38 lines
918 B
Vue
<!-- 欢迎提示词 -->
|
||
<script setup lang="ts">
|
||
import { Typewriter } from 'vue-element-plus-x';
|
||
import { useTimeGreeting } from '@/hooks/useTimeGreeting';
|
||
import { useUserStore } from '@/stores';
|
||
|
||
const greeting = useTimeGreeting();
|
||
const userStore = useUserStore();
|
||
|
||
const username = computed(() => userStore.userInfo?.username ?? '意心Ai,一心只为打造更良心的Ai平台');
|
||
</script>
|
||
|
||
<template>
|
||
<div
|
||
class="welcome-text w-full flex flex-wrap items-center justify-center text-center text-lg font-semibold mb-32px mt-12px font-size-32px line-height-32px"
|
||
>
|
||
<!-- :content="`${greeting}好,${username}`"-->
|
||
<Typewriter
|
||
:content="`${username}`"
|
||
:typing="{
|
||
step: 2,
|
||
interval: 45,
|
||
}"
|
||
:is-fog="{
|
||
bgColor: '#fff',
|
||
}"
|
||
/>
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped lang="scss">
|
||
:deep {
|
||
.typer-container {
|
||
overflow: initial;
|
||
}
|
||
}
|
||
</style>
|