feat(ui): 初始化

This commit is contained in:
廖彦棋
2024-03-06 09:27:11 +08:00
parent 4327fdac12
commit 1f80ba9463
92 changed files with 4907 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
</main>
</template>