typescript 搜索3.ts
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 搜索3.ts相关的知识,希望对你有一定的参考价值。
@Directive({
selector: '[searchable]'
})
export class SearchableDirective {
token = '';
@Input()
set searchable(value: string) {
this.token = value;
}
constructor(@Optional() private container: SearchableContainerComponent, private host: ElementRef) {
if (!container) {
throw new Error(`Missing <dato-searchable-container> wrapper component`);
}
}
ngOnInit() {
this.container.register(this);
}
hide() {
this.host.nativeElement.classList.add('hide');
}
show() {
this.host.nativeElement.classList.remove('hide');
}
ngOnDestroy() {
this.container.unregister(this);
}
}
以上是关于typescript 搜索3.ts的主要内容,如果未能解决你的问题,请参考以下文章
typescript 阿比 - 3.ts
typescript ML-3.ts
typescript SD-3.ts
typescript 1.8-3.ts
typescript 键盘3.ts
typescript CV-3.ts