Vue中动态拼接html代码包含方法传参方式
1.首先你拼接的htmllet content=<button onclick="come()"></button>;2.在methods中创建一个函数methods:function(){come:function(){alert('你好!再见')}},3.嫁接的桥梁created(){let bridge=this;window.come=bridge.come;},4.ok完成
·
1.首先你拼接的html
let content=<button onclick="come()"></button>
;
2.在methods中创建一个函数
methods:function(){
come:function(){ alert('你好!再见') }
},
3.嫁接的桥梁
created(){
let bridge=this; window.come=bridge.come;
},
更多推荐
已为社区贡献1条内容
所有评论(0)