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