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