ng8-breadcrumb
is available on NPM
$ npm install ng8-breadcrumb --save
Once the module has been installed, you need to include Ng8BreadcrumbModule
into your root module:
import {Ng8BreadcrumbModule} from 'ng8-breadcrumb';
...
@NgModule({
imports: [
...
Ng8BreadcrumbModule.forRoot({
prefix: 'Home' // default 'false'
}),
...
],
...
})
export class AppModule {}
& Anywhere template component :
<ng8-breadcrumb></ng8-breadcrumb>
Use the service :
constructor(private _breadcrumb: BreadcrumbService) {
_breadcrumb.store('id', 'iPhone x');
}
And finally route configuration:
{
path: '...',
...
data: { breadcrumb: 'YOUR TEXT' },
...
}
ng8-breadcrumb is released under MIT license.