18 lines
399 B
Vue
18 lines
399 B
Vue
|
<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>
|