25 lines
417 B
Vue
25 lines
417 B
Vue
<template>
|
|
<view class="content">
|
|
<image src="/static/bg.png" style="width: 100vw; height: 100vh;"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { getConfig } from '@/common/server/config';
|
|
onLoad(async () => {
|
|
let res = await getConfig();
|
|
console.log(res);
|
|
sleep(200);
|
|
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|