我知道我可以像这样将具有视图模型的自定义元素添加到Aurelia的全局资源中:
export function configure(aurelia) {
aurelia.globalResources("resources/myElement");
...
}
但是如何将仅 html 模板添加到全局资源中?如果我像上面的配置一样包含它们,我会收到找不到我的仅 html 元素的错误。
谢谢
没
关系,我已经找到了解决方案,只需要在最后添加.html:
export function configure(aurelia) {
aurelia.globalResources("resources/myElement");
aurelia.globalResources("resources/myHtmlOnlyElement.html");
...
}