Initial project

This commit is contained in:
Timi
2025-07-08 16:41:57 +08:00
parent 34c88de543
commit 01baba4c8b
44 changed files with 13913 additions and 129 deletions

25
src/Root.vue Normal file
View File

@ -0,0 +1,25 @@
<template>
<b-e-flower-fall class="background" />
<root-layout v-if="ready" class="diselect" icp="粤ICP备2025368555号-1" domain="imyeyu.com" author="夜雨">
<router-view />
</root-layout>
<popup />
<user-profile-popup />
</template>
<script lang="ts" setup>
import { BEFlowerFall, Popup } from "timi-web";
import { RootLayout, UserProfilePopup } from "timi-tdesign-pc";
const ready = ref(false);
onMounted(async () => {
ready.value = true;
});
</script>
<style lang="less">
.background {
background: url("@/assets/img/main.png") fixed right bottom;
}
</style>