1
isHotel_profile: function(){
return this.get('currentPath') === 'hotel';
}.property('currentPath'),
組件
{{#step-controller hotelPage=isHotel_profile}} {{/step-controller}}
和這裏的分量模板
{{#if hotelPage}}
hotel page
{{else}}
not hotel page
{{/if}}
我想使用作爲有條件的財產我怎麼能實現這一點
'{{步控制器hotelPage = isHotel_profile}}' – artych