微信小程序使用vant的swiperCell单元格的问题
由于要做一个滑块,于是纠结好久的template如何解析。经过同事指导,发现原来是个乌龙。错误使用:解析:这是vue版本的vant。。。。 网址:https://youzan.github.io/vant/#/zh-CN/swipe-cell<van-swipe-cell><template #left><van-button square type="primary
·
由于要做一个滑块,于是纠结好久的template如何解析。经过同事指导,发现原来是个乌龙。
错误使用:
解析:这是vue版本的vant。。。。 网址:https://youzan.github.io/vant/#/zh-CN/swipe-cell
<van-swipe-cell>
<template #left>
<van-button square type="primary" text="选择" />
</template>
<van-cell :border="false" title="单元格" value="内容" />
<template #right>
<van-button square type="danger" text="删除" />
<van-button square type="primary" text="收藏" />
</template>
</van-swipe-cell>
正确使用:
解析:这是webApp版的。。。。 网址:https://youzan.github.io/vant-weapp/#/swipe-cell
<van-swipe-cell right-width="{{ 65 }}" left-width="{{ 65 }}">
<view slot="left">选择</view>
<van-cell-group>
<van-cell title="单元格" value="内容" />
</van-cell-group>
<view slot="right">删除</view>
</van-swipe-cell>
更多推荐
已为社区贡献5条内容
所有评论(0)