Files
anmo/uniapp/src/bundle/pages/as_us/as_us.vue
2025-08-19 14:16:51 +08:00

24 lines
583 B
Vue

<template>
<view class="as-us flex flex-1 flex-col items-center justify-center">
<image :src="appStore.config.web_logo" mode="" class="img"></image>
<view class="text-content mt-[20rpx]">当前版本{{ `v${appStore.config.version}` }}</view>
</view>
</template>
<script setup lang="ts">
import { useAppStore } from '@/stores/app'
const appStore = useAppStore()
</script>
<style lang="scss" scoped>
.as-us {
height: 100%;
.img {
width: 160rpx;
height: 160rpx;
border-radius: 20rpx;
margin-top: 96rpx;
}
}
</style>