应用控制器
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}}
我想使用该属性作为有条件的我该如何实现