主页框架

This commit is contained in:
李志鹏
2026-02-02 14:12:23 +08:00
parent 721cf2066a
commit 6f8091a5c5
5 changed files with 120 additions and 12 deletions

22
src/views/home/test.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<div class="test">
<p>老八秘制小汉堡</p>
</div>
</template>
<script setup lang="ts">
import { computed } from 'vue'
</script>
<style lang="less" scoped>
.test {
flex: 1;
margin: 10px;
border-radius: 10px;
background-color: rgb(242, 130, 90);
display: flex;
align-items: center;
justify-content: center;
font-size: 10rem;
}
</style>