I ran into a problem, to pass the value of my input to my function without using v-model
.
I know it works that way
<Input @click="func" />
func(val){
alert(val)
}
But I can not pass another parameter, eg: <Input @click="func(status)" />
, in this way it will only receive the value I passed, but I would like to be able to pass the value that is in the input, more parameters of my choice .