【发布时间】:2020-02-10 08:09:30
【问题描述】:
我有一个包含多个路由的 Ember 应用程序。但是,我不希望来自application.hbs 的内容出现在其路由中。我试过了:
renderTemplate: function () {
this.render("another_outlet");
}
但它会在路由中显示来自another_outlet.hbs 的内容以及来自application.hbs 的内容。
【问题讨论】:
标签: javascript ember.js routes ember-router