24 lines
583 B
Vue
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>
|