is there any way that i can pass a variable in function in the @click function. this is what i intend to do.
<div @click="someFunction(type=clockIn)"
<p>some template</p>
</div>
in a html template. how can i define the variable with its value. because i have 3 template where when i click on it will on it, the someFunction will trigger and using the type value. the function is not a problem. the problem is how to define the type variable with its value.