{{component-name}}
在模板中使用时渲染组件效果很好。我想从带有动态参数的路由中渲染一个组件。我试过这个
App.ApplicationRoute = Ember.Route.extend({
init: function(){
this.render("components/comp-two", {
into: "application",
outlet: "test"
});
}
});
它成功呈现了一个模板,但组件的事件(init、didInsertElement)和操作不起作用。
如何使事件和动作起作用?