template部分
<view class="body">
<view class="box-item" v-for="item in list"> {{item}} </view>
</view>
CSS部分
/* 部分頁面滾動 */
page{
display: -webkit-box;
width: 100%;
height: 100%;
}
.container {
width: 100%;
display: flex;
min-height: 100vh;
flex-direction: column;
}
.body{
overflow-y: scroll;
}