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