### Which @angular/* package(s) are relevant/related to the feature request? router ### Description It would be nice if `withComponentInputBinding` supports binding to the current route's `title` property via an `input`. ### Proposed solution Allow binding to the route's `title` property, similar to other supported properties. ```ts readonly title = input.required<string>(); ``` ### Alternatives considered The current approach is by accessing the `title` property via the Route's snapshot. ```ts readonly title = this.activedRoute.snapshot.title; ```