22 lines
331 B
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>
|