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