2
Aureliaの属性を使用してオブジェクトをカスタムコンポーネントに渡すにはどうすればよいですか?属性を使用してオブジェクトをカスタムコンポーネントに渡す
マイカスタム・コンポーネント・クラスは次のようになります。
import {bindable} from 'aurelia-framework';
export class PageHeading {
@bindable title = '';
@bindable subTitle = '';
@bindable path;
constructor() {
console.log('page heading...' + this.subTitle);
}
created() {
console.log('created.. ', this.path);
}
}
そして、私はこのようにそのコンポーネントを使用するhtmlファイルに:
<page-heading title="Dashboard" sub-title="your starting point" path="${path}"></page-heading>
これはtitle
とsubTitle
のような文字列のために正常に動作しますが、私オブジェクトにコンポーネントを渡す方法がわかりません。これは可能ですか?もしそうなら、どうすればAureliaでこれを行うことができますか?