Files
FiDA_Front/src/views/home/test.vue
2026-02-03 11:11:04 +08:00

23 lines
378 B
Vue

<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>