Enable component input binding when configuring the router: ```ts import { provideRouter, withComponentInputBinding } from '@angular/router'; bootstrapApplication(AppComponent, { providers: [ provideRouter(routes, withComponentInputBinding()), ], }); ``` Define a matching input in the component: ```ts // routes.ts export const routes: Routes = [ { path: 'users/:id', loadComponent: () => import('./user.component') .then(m => m.UserComponent), }, ]; // user.component.ts import { Component, inpu...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill angular-routing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Angular Routing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-angular-routing-7c1bdd20)More formats (shields.io, HTML) on the badges page.
Enable component input binding when configuring the router:
```ts
import { provideRouter, withComponentInputBinding } from '@angular/router';
bootstrapApplication(AppComponent, {
providers: [
provideRouter(routes, withComponentInputBinding()),
],
});
```
Define a matching input in the component:
```ts
// routes.ts
export const routes: Routes = [
{
path: 'users/:id',
loadComponent: () => import('./user.component')
.then(m => m.UserComponent),
},
];
// user.component.ts
import { Component, input } from '@angular/core';
@Component({
standalone: true,
template: `User ID: {{ id() }}`,
})
export class UserComponent {
id = input.required<string>();
}
```
Navigating to `/users/42` automatically binds `"42"` to `id`. With `withComponentInputBinding()`, Angular can also bind matching inputs from query params and resolver data.
Keep route configuration free of business logic (“No logic”); use dedicated resolvers or guards when needed. Class-based guards are deprecated—use functional guards such as `CanActivateFn`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!