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