You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
619 B
Vue

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<script setup>
/**
* name
* usersa0ChunLuyu
* date2023年8月13日 18:33:58
*/
import {
ref
} from 'vue'
import {
$response
} from '@/api'
import {
onShow
} from '@dcloudio/uni-app'
import dev from '@/components/dev/dev.vue'
const title = uni.$lu.config.title
</script>
<template>
<view>
<view class="page_wrapper">
<view>Yo {{ title }}</view>
</view>
<dev></dev>
</view>
</template>
<style scoped>
.button_wrapper {
text-align: center;
margin-top: 30rpx;
}
.page_wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>