cultivationApp/pages/index/index.vue

22 lines
331 B
Vue
Raw Normal View History

2023-10-17 11:00:41 +08:00
<template>
<view class="content">
{{aa}}
</view>
</template>
<script lang="ts" setup>
import { ref } from "vue"
const aa = ref(5454)
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: red;
background-color: red;
width: 100rpx;
}
</style>