Aurelia没有绑定innerHTML绑定语句

时间:2016-12-30 16:31:37

标签: aurelia

鉴于我已经使用innerhtml.bind来插入一些html,但html包含在其中,它自己的aurelia' .bind'语句如何让这些内部绑定被aurelia识别?

例如

LinkedListDouble

,其中

<div innerhtml.bind="myhtml"></div>

1 个答案:

答案 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>