Angularjs 1.4+;新路由器:默认组件?

Angularjs 1.4+;新路由器:默认组件?,angularjs,angularjs-routing,angularjs-new-router,Angularjs,Angularjs Routing,Angularjs New Router,使用新的路由器和Angular 1.4,是否可以为特定视口定义默认组件?例如,我的侧导航和顶部导航都是组件,目前我必须这样定义每条路线: $router.config([ { path: '/', components: { 'topbar': 'topbar', 'sidebar': 'sidebar', 'default':

使用新的路由器和Angular 1.4,是否可以为特定视口定义默认组件?例如,我的侧导航和顶部导航都是组件,目前我必须这样定义每条路线:

    $router.config([
        {
            path: '/',
            components: {
                'topbar': 'topbar',
                'sidebar': 'sidebar',
                'default': 'dashboard'
            }
        },
        {
            path: '/notice/new',
            components: {
                'topbar': 'topbar',
                'sidebar': 'sidebar',
                'default': 'notice.new'
            }
        }
    ]);
如您所见,我必须在每条路线中定义顶栏和侧栏组件,即使它们完全相同。有没有办法告诉新路由器“除非被特定路由覆盖,否则始终在此视口中使用此组件”