本文整理汇总了TypeScript中@angular/core.Input函数的典型用法代码示例。如果您正苦于以下问题:TypeScript Input函数的具体用法?TypeScript Input怎么用?TypeScript Input使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了Input函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: materializeDropdownStream
@Input() set materializeDropdownStream(stream$:Observable<any>) {
this.stream$ = stream$;
}
示例2: isOpen
/**
* Returns whether or not the popover is currently being shown
*/
@Input()
public get isOpen(): boolean { return this._popover.isShown; }
示例3: nzLabel
/** group 的 label,支持 'string' 和 `TemplateRef` */
@Input()
set nzLabel(value: string | TemplateRef<void>) {
this.isLabelString = !(value instanceof TemplateRef);
this._label = value;
}
示例4: isActive
@HostBinding("class.active")
@Input()
public get isActive():boolean {
return this._isActive;
}
示例5: loadingProp
@Input("waitingFor")
set loadingProp(prop: string) {
this._loadingProp = prop
}
示例6: content
@Input() set content(content: string){
const parsed = marked.parse(content.trim());
this.contentPlaceholder.nativeElement.innerHTML = parsed;
}
示例7: placeholder
@Input()
public get placeholder():string {
return this._placeholder || this.localeValues.single.placeholder;
}
示例8: matAutosize
@Input('mat-autosize')
get matAutosize(): boolean { return this.enabled; }
示例9: matTextareaAutosize
@Input()
get matTextareaAutosize(): boolean { return this.enabled; }
示例10: matAutosizeMinRows
@Input()
get matAutosizeMinRows(): number { return this.minRows; }