将自定义元素添加到aurelia视图

时间:2015-08-20 21:52:25

标签: javascript aurelia custom-element

是否可以动态加载自定义元素?

假设我的viewModel看起来像这样:

export class MyViewModel {
    attached() {
        $(".content").prepend("<card></card>");
        $(".content").prepend("<otherCard></otherCard>");
    }
}

为什么aurelia没有渲染我的“卡片”。有什么方法可以实现类似的行为吗?

直接在HTML中添加这些卡很有效,但我需要更模块化的方法。

由于

1 个答案:

答案 0 :(得分:4)

查看文档中的<compose view-model="card" />元素。它应该给你你正在寻找的东西。