应用场景:1、表格内容滚动(横向/纵向);2、选项卡切换不同页面或左右滑动页面
<scroll-view class="prefer-scroll" scroll-x="true" @scroll="scroll">
<table-card v-for="(item,index) in tableData" :key="index" :data="item" class="content-box">
<block></block>
</table-card>
</scroll-view>
.prefer-scroll {
white-space: nowrap;
height: 340rpx;
.content-box {
display: inline-block;
// width: 320upx;
height: 340rpx;
border: 1upx solid #d3d3d3;
border-left: none;
}
}
