mkm
/
yanzhiAPP
Template
2
0
Fork 0
yanzhiAPP/pages/index/index.vue

22 lines
331 B
Vue

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