Use JSX to write VUE, bind events to pass a parameter at the same time, how to write.

when using a template, like @ click= "handleClick ("123")" , you can pass 123 to the click event of handleClick. I now use JSX to write onClick= {this.handleClick} , do not know how to pass parameters, similar to react onClick= {this.handleClick.bind (this,"123")} , but not valid in vue, please, thank you.

Jun.09,2022

onClick= {() = > this.handleClick ('123')}


onClick={function () {
    that.handleClick('123');
}}
Menu