1
我已經在github回購中定義了一個自定義元素。我然後jspm install
'd在另一個應用程序中說元素。如何在Aurelia應用程序中使用外部自定義元素(插件)?
在其他應用程序中導入此元素的正確方法是什麼?當我在應用程序配置中調用aurelia.use.plugin('aurelia-custom-element')
時,它說它找不到aurelia-custom-element.js
。
奧裏利亞定製-element.html:
<template>
<div>Hello world, from Aurelia custom element!</div>
</template>
奧裏利亞定製-element.js:
import {customElement, bindable} from 'aurelia-framework';
@customElement('aurelia-custom-element')
export class AureliaCustomElement {
}
index.js:
export * from './aurelia-custom-element';
export function configure(config){
config.globalResources('./aurelia-custom-element');
}
沒有,沒有做到這一點。我不能分享代碼,因爲它是一個私人回購,但它實際上是上面顯示的代碼。我更新了'use.plugin',但它仍然找不到文件 –
其實,我認爲這可能已經成功了。我似乎有問題瓦特/主機應用程序 –
不是應用程序工作正常,但它仍然沒有加載插件 –