0
我在配置中有鐵路由器layoutTemplate
。對於我的要求,我需要包含一些iframe元素,而無需渲染layoutTemplate。沒有佈局的鐵路由器地圖模板
//My configuration
Router.configure({
layoutTemplate: 'layout'
});
//My routes
Router.map(function() {
this.route('index', {path: '/'});
this.route('Iframe', {path: '/iframe'}); //this particular path should render without layoutTemplate.
});