talk_appAmin/pages/index.vue

18 lines
399 B
Vue
Raw Normal View History

2024-04-23 23:01:35 +08:00
<template>
<view class="flex flex-col items-center justify-center">
<image class="h-[200rpx] w-[200rpx] mt-[200rpx] mx-auto mb-[50rpx]" src="@/static/logo.png"></image>
<view class="flex justify-center">
<text class="text-[36rpx] text-[#8f8f94]">Hello RuoYi</text>
</view>
</view>
</template>
<script>
export default {
onLoad: function () {
}
}
</script>
<style></style>