[Vuejs]-Filter list by index match vue js

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>

Leave a comment