アプリケーションコントローラー
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}}
プロパティを条件として使用したいのですが、どうすればそれを達成できますか