[Vuejs]-How to bind method to an elements click in v-for cycle?

0๐Ÿ‘

And if you do something like this?

<template v-for="(day) in days">
    <div v-on:click="dayClick(day.id)">
       {{ day.day }}
    </div>
</template>

-1๐Ÿ‘

As it always appears โ€“ im my own worst enemy. I had pointer-events: none; for element i was trying to look at. Sry guys, and thank you for help. Im much more stupid than all of you

Leave a comment