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');
}}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32623-341bc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32623-341bc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?