Appending a value to the Aurelia router config.title
问题 I want to set a base title value for my Aurelia application and then append a value to it based on the route that is active. My router configuration is: export class App { configureRouter(config, router) { config.title = 'Brandon Taylor | Web Developer | Graphic Designer'; config.map([ . . . { route: 'work', name: 'work', moduleId: 'work', nav: true, title: ' | work' }, . . . ]); this.router = router; } } Aurelia wants to append the title navigation parameter to the beginning of the config