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.