chore: Update environment configuration and dependencies
Some checks failed
CI / cache-and-install (push) Failing after 2m6s

This commit is contained in:
严浩
2024-08-05 16:20:24 +08:00
parent e78e2108b9
commit 31aa166513
20 changed files with 1230 additions and 53 deletions

15
src/pages/About.vue Normal file
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>

9
src/pages/index.vue Normal file
View File

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