26 lines
348 B
Vue
26 lines
348 B
Vue
<!-- 这个页面可以解决屏幕初始化问题 -->
|
|
|
|
<template>
|
|
<view class="main"></view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
onShow() {
|
|
setTimeout(() => {
|
|
uni.redirectTo({
|
|
url: '/pages/index/index'
|
|
})
|
|
}, 100);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.main {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: #fff;
|
|
}
|
|
</style>
|