Within my template, there is this code snippet:
<input @input="myMethod(myVariableName)" />
Following that, I have the myMethod function:
myMethod(variablePassed) {
console.log(variablePassed)
}
Upon execution, I receive the value of the "variablePassed"
. However, I am curious if there is a way for me to identify which specific variable was passed.