feat: 环境搭建

This commit is contained in:
Gaoxs
2023-01-06 15:32:51 +08:00
commit 2ee84d2d0b
613 changed files with 80023 additions and 0 deletions

15
bf/views/AboutView.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
bf/views/HomeView.vue Normal file
View File

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