如图:这个列表是v-for循环出来的,我想点击箭头就会展开内容,但是我点击任意一个,其余的都会展开,这个要怎么解决呢,刚接触vue,求指教
<view class="showhide" @click="isshowClick(index)"><image :class="{ rotate: isrotate }" src="../../static/temp/xia.png"></image></view>
export default{
data() {
return {
isrotate: true,
};
},
methods: {
isshowClick(e) {
this.isrotate = !this.isrotate;
},
}
相关分类