鉴于我已经使用innerhtml.bind来插入一些html,但html包含在其中,它自己的aurelia' .bind'语句如何让这些内部绑定被aurelia识别?
例如
LinkedListDouble
,其中
<div innerhtml.bind="myhtml"></div>
答案 0 :(得分:2)
docs说:
使用innerhtml属性绑定只是设置元素 innerHTML属性。标记不会通过Aurelia的 模板系统。 绑定表达式和require元素不会 被评估。
如何创建组件并使用插槽?
我-component.html 强>
<template>
<div><slot></slot></div>
</template>
<强> consumer.html 强>
<require from="./my-component.html"></require>
<my-component><div click.trigger='console.log(123)'>some text</div></my-component>