ai-watch-app/pages/index/blank.vue

26 lines
349 B
Vue

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