vue 中动态添加html元素并绑定点击事件onclick

 在vue 中,添加html元素,并在元素中添加点击事件,用原生的onclick来触发事件,将事件挂在window上

mouseClickHandler(f) {
     //创建html元素
     let contentHTML = "
"; contentHTML += f.headline; contentHTML += "
"; ..... }
//点击事件
toWaringInfo2(data){
    console.log(data)
},
//关键
created(){
    let _this=this;
	window.toWaringInfo2=_this.toWaringInfo2;
},

 

你可能感兴趣的:(vue 中动态添加html元素并绑定点击事件onclick)