I have a route configuration
@RouteConfig([ { path: '/', name: 'Start', component: Journal }, { path: '/register', name: 'Register', component: Register }, { path: '/login', name: 'Login', component: Login }, { path: '/settings', name: 'Settings', component: Settings }, ])
I would like to listen to events released from @Output magazine. How can I do this when the only link I have in the template is
<a class="nav-item nav-link" [routerLink]="['Journal']">Journal</a>
?
source share