0
私は次のようである私のエンバー・コンポーネントに渡されたプロパティにアクセスするいくつかの問題、持っています:私は渡すEmber 2コンポーネント内からプロパティにアクセスするにはどうすればよいですか?
import Ember from 'ember';
export default Ember.Component.extend({
isRowEditorActive: function() {
return this.get('items').length > 0;
}.property('items'),
actions: {
// My actions here
}
});
items
(文字列のリスト)は、テンプレート内問題なくアクセスすることができます{{line-items-table items=['asd', 'asd']}}
しかし、コンポーネント内のそれらをget
にしようとすると、undefinedが返されます。助言がありますか?
:{項目:[「FOO」、「バー」] } {{line-items-table params = lineItemParams}} –