import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'cm-select-doc-6', templateUrl: './select-doc-6.component.html', styleUrls: ['./select-doc-6.component.css'] }) export class SelectDoc6Component implements OnInit { searchOptions = [{ value: 'jack', label: '杰克' }, { value: 'lucy', label: '露西' }, { value: 'tom', label: '汤姆' }]; selectedMultipleOption = [this.searchOptions[0]]; ngOnInit() { setTimeout(_ => { this.selectedMultipleOption = []; }, 2000) } }