vue.js v-html怎么无法触发点击事件?
背景:后端返前端html格式的数据,前端用v-html解析渲染,如:<a @click="show(1)"></a>,a标签能成功渲染,但其绑定的事件无法触发。
原因:vue没有将其作为vue的模板解析渲染
解决方案:不用v-html而是component模板编译
上干货:
<template> <div class="hello"> <h1> 我是父组件 </h1> <div class="parent" id="parent"> </div> </div> </template> <script> import Vue from 'vue'; var MyComponent = Vue.extend({ template: '<a @click="show(1)">我是大魔王</a>', methods: { show(i) { console.log(i); }, } }); var component = new MyComponent().$mount(); export default { data() { return { } }, methods: { }, mounted() { document.getElementById('parent').appendChild(component.$el); } } </script> <style scoped> </style>
页面:
控制台:
更多web开发知识,请查阅 HTML中文网 !!
以上就是vue.js v-html怎么无法触发点击事件?的详细内容,更多请关注易知道|edz.cc其它相关文章!