import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-breadcrumb', templateUrl: './breadcrumb.component.html', styleUrls: ['./breadcrumb.component.less'] }) export class BreadcrumbComponent implements OnInit,OnDestroy { constructor() {} ngOnInit() {} ngOnDestroy() {} }