Is there any solution when generating html on method, and the html tag have onclick event listener to other vuejs method?
Methods :{
methodOne(){
//...
return '<button class="del-btn" onclick="methodTwo(this,event)"><i class="fa fa-trash"></i></button>'
},
methodTwo(elm,event){
//...
}
}
I have tried to use @click="methodTwo(this,event)" and `@click="this.methodTwo(this,event)" but still not working..