I am trying to setup a navigation bar that can display the title of the page. To do this, I wanted to have each route carry a param 'navTitle' in it's data.
In my route module, I pass the navTitle into the child route health.
const routes: Routes = [
  {
    path: 'health',
    loadChildren: () => import('./modules/health/health.module').then( m => m.HealthModule ),
    data: {navTitle: 'Health'}
  },
  {path: '**', pathMatch: 'full', redirectTo: '/health'}
];
However, on route /health, the data variable is still blank.
I loaded the navTitle by subscribing to the ActivatedRoute and keeping a reference to the navTitle because I want it to be able to change on navigation else where.
// get the page name
    this.pageNameSub = this.route.data.subscribe(
      data => {
        this.pageName = data.navTitle;
        console.log(data)
      },
      err => this.pageName = 'App'
    )
The log statement is showing the data is {} although I expected it to be {navTitle: 'Health'}.
I tried adding the data to the child router as well but it still did not populate.
My main question is, how do I pass initial data to Angular routes?
 
    