initial commit

This commit is contained in:
2024-09-14 21:04:16 +08:00
commit 000eb1c790
17 changed files with 9224 additions and 0 deletions

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

@ -0,0 +1,40 @@
<template>
<div class="content">
<img class="logo" src="/static/logo.png" />
<div class="text-area">
<p class="title text-red-500">{{ title }}</p>
</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const title = ref('Hello')
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
}
</style>