import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'cm-select-doc-2', templateUrl: './select-doc-2.component.html', styleUrls: ['./select-doc-2.component.css'] }) export class SelectDoc2Component implements OnInit { size = 'default'; options = [{ value: 'jack', label: 'Jack' }, { value: 'lucy', label: 'Lucy' }, { value: 'disabled', label: 'Disabled', disabled: true }, ]; single = 'lucy'; multiple = ['lucy']; tag = ['lucy']; ngOnInit() {} constructor() {} }