scroll-x="true" 出现横向滚动
scroll-with-animation="true" 横向滚动有动画
<scroll-view class="scrool-more" scroll-x="true" scroll-with-animation="true">
<text class="label-name" v-for="(item,index) in listTypecont"
:key="index">{{item.name }}</text>
</scroll-view>
listTypecont:[
{name:"张三"},
{name:"张三"},
{name:"张三"},
{name:"张三"},
{name:"张三"},
{name:"张三"},
{name:"张三"},
{name:"张三"},
{name:"张三"},
{name:"张三"},
]
.scrool-more{
white-space: nowrap; 必须要这个属性,否者不能出现横线滚动
100%;
height: 56rpx;
display: inline-block;
}
.label-name{
140rpx;
height: 40rpx;
color: #fff;
padding: 20rpx;
background: pink;
}