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