刚开始设置的height:100vh,就会出现如图的效果,会出现上下滚动
<template>
<view class="container">
......
</view>
</template>
<style lang="scss">
.container {
height: 100vh;
}
</style>
解决方法:
<style lang="scss">
.container {
......
position: fixed;
}
</style>