Aurelia将模板添加到全球资源

时间:2017-03-28 08:38:33

标签: templates aurelia app-globalresources

我知道我可以将具有视图模型的自定义元素添加到Aurelia的全球资源中,如下所示:

"Fruit"

但是如何将html-only模板添加到全局资源? 如果我像上面的配置中那样包含它们,我会收到错误,我的html-only元素无法找到。

感谢

1 个答案:

答案 0 :(得分:1)

没关系,我找到了解决方案,只需要在最后添加.html:

export function configure(aurelia) {
    aurelia.globalResources("resources/myElement");
    aurelia.globalResources("resources/myHtmlOnlyElement.html");
    ...
}