You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
363 B
23 lines
363 B
<template>
|
|
<view class="blank-page">
|
|
<text class="tip">这是一个空白页</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 空白页,无逻辑
|
|
</script>
|
|
|
|
<style scoped>
|
|
.blank-page {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background-color: #ffffff;
|
|
}
|
|
.tip {
|
|
color: #999999;
|
|
font-size: 28rpx;
|
|
}
|
|
</style>
|