import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'cm-select-doc-3', templateUrl: './select-doc-3.component.html', styleUrls: ['./select-doc-3.component.css'] }) export class SelectDoc3Component implements OnInit { selectedOption:any; searchOptions:any; ngOnInit() { //模拟服务器异步加载 setTimeout(_ => { this.searchOptions = [{ value: 'jack', label: 'Jack' }, { value: 'lucy', label: 'Lucy' }, { value: 'tom', label: 'Tom' }]; }, 100); } constructor() {} }