uniapp在手机上选项卡,items数组内容不显示

<uni-segmented-control :current="current" :values="items" @clickItem="onClickItem" styleType="text"
                activeColor="black"></uni-segmented-control>
            <view >
                <view v-show="current === 0">
                    <view class="" v-html="list.intro">
                    </view>
                </view>
                <view v-show="current === 1">
                    <view class="img-center">
                        <image src="../../static/images/order.png" mode=""></image>
                    </view>
                </view>
                <view v-show="current === 2">
                    <view class="img-center">
                        <image src="../../static/images/order.png" mode=""></image>
                    </view>
                </view>
            </view>
data里面   items: ['图片详情', '商品参数', '买家评论'],

uni-segmented-control这个组件打印values看有没有值