[Vuejs]-How to dynamically get value of button using VueJS

1👍

There’s no need to use template interpolation within the v-for as the buttons is an expression of type string | null | number | object | array | undefined, so you can just pass that as an argument:

v-on:click="getGenre(buttons)"

Leave a comment