[Vuejs]-Set Component props on click

0👍

define a variable called index in data, and change that variable on that button click to the specific index, something like this

<v-btn @click="index = 1">display data of 1</v-btn>

and

<MyComponent v-bind:props="mydata[index]"/>

Leave a comment