我有一个模板字符串"<a onclick={ parent.foo }>Link</a>"
。我想将它传递给其他标签,而不是正确渲染它。我添加了我的代码的简短示例。它不起作用,只是尝试显示我需要的东西。
<child-tag>
<div>{ opts.data }</div>
</child-tag>
<parent-tag>
<child-tag data={ html }></child-tag>
<script>
this.html = "<a onclick={ parent.foo }>Link</a>";
foo() {
console.log("Hello");
}
</script>
</parent-tag>