23 lines
378 B
Vue
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>
|