taro-vue-ui 使用tabs标签页第二个以后的tab内容会往左偏移(h5的问题,小程序正常)
-
小程序正常显示
<template> <view class='panel__content'> <AtTabs :swipeable="false" :current="current1" :tabList="tabList1" :onClick="handleClick" > <AtTabsPane :current="current1" :index="index" v-for="(item, index) in 3"> <view>标签页五的内容</view> </AtTabsPane> </AtTabs> </view> </template>
-
帮顶