vue拼接html中onclick的触发方式,vue中的onclick,vue触发onclick,vue拼接html
作者:互联网
1.首先你有一段拼接的html代码
let conten=`<button οnclick="come()">点我</button>`;
2.然后你需要在methods中有一个函数
methods:{
come:function(){
alert('你好,再见!')
},
}
3.下一步就是连接起桥梁的关键点
created(){
let _this=this;
window.come=_this.come;
},
小一梦
发布了15 篇原创文章 · 获赞 2 · 访问量 590
私信
关注
标签:vue,methods,html,拼接,onclick,come 来源: https://blog.csdn.net/weixin_43728978/article/details/104530261