0👍
store cardIndexShow
in data and make computed prop getDetails or something
computed:{
card_details(){
return this.card_transactions[this.cardIndexShow];
}
},
and in template
<p>{{ card_details }}</p>
Source:stackexchange.com