1.在项目中使用vant的van-swipe-cell
,需要动态的获取当前的ref的值
2.具体方法
<div v-for="item in crewData" :key='item.id'>
<van-swipe-cell :ref="`crewData${item.id}`">
获取的
openswipCell (event, item) {
this.$refs[`crewData${item.id}`][0].open('right')
},
深入的,因为需要在循环体(也就是父盒子内部实现点击)
`
openswipCell (event, item) {
event.stopPropagation();
if (this.$refs[`crewData${item.id}`][0].offset) {
this.$refs[`crewData${item.id}`][0].close();
return;
}
this.$refs[`crewData${item.id}`][0].open('right')
},
`
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。