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