當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript core.Input函數代碼示例

本文整理匯總了TypeScript中@angular/core.Input函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript Input函數的具體用法?TypeScript Input怎麽用?TypeScript Input使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Input函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: materializeDropdownStream

 @Input() set materializeDropdownStream(stream$:Observable<any>) {
   this.stream$ = stream$;
 }
開發者ID:gotascii,項目名稱:gear_list_browser_client,代碼行數:3,代碼來源:materialize-dropdown-stream.directive.ts

示例2: isOpen

 /**
  * Returns whether or not the popover is currently being shown
  */
 @Input()
 public get isOpen(): boolean { return this._popover.isShown; }
開發者ID:yusijs,項目名稱:ng2-bootstrap,代碼行數:5,代碼來源:popover.directive.ts

示例3: nzLabel

 /** group 的 label,支持 'string' 和 `TemplateRef` */
 @Input()
 set nzLabel(value: string | TemplateRef<void>) {
   this.isLabelString = !(value instanceof TemplateRef);
   this._label = value;
 }
開發者ID:zhaoyan11,項目名稱:ng-zorro-antd,代碼行數:6,代碼來源:nz-autocomplete-optgroup.component.ts

示例4: isActive

 @HostBinding("class.active")
 @Input()
 public get isActive():boolean {
     return this._isActive;
 }
開發者ID:edcarroll,項目名稱:ng2-semantic-ui,代碼行數:5,代碼來源:tab-header.ts

示例5: loadingProp

 @Input("waitingFor")
 set loadingProp(prop: string) {
     this._loadingProp = prop
 }
開發者ID:entcore,項目名稱:entcore,代碼行數:4,代碼來源:spinner-cube.component.ts

示例6: content

 @Input() set content(content: string){
   const parsed = marked.parse(content.trim());
   this.contentPlaceholder.nativeElement.innerHTML = parsed;
 }
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:4,代碼來源:markdown.component.ts

示例7: placeholder

 @Input()
 public get placeholder():string {
     return this._placeholder || this.localeValues.single.placeholder;
 }
開發者ID:edcarroll,項目名稱:ng2-semantic-ui,代碼行數:4,代碼來源:select.ts

示例8: matAutosize

 @Input('mat-autosize')
 get matAutosize(): boolean { return this.enabled; }
開發者ID:mstawick,項目名稱:material2,代碼行數:2,代碼來源:autosize.ts

示例9: matTextareaAutosize

 @Input()
 get matTextareaAutosize(): boolean { return this.enabled; }
開發者ID:mstawick,項目名稱:material2,代碼行數:2,代碼來源:autosize.ts

示例10: matAutosizeMinRows

 @Input()
 get matAutosizeMinRows(): number { return this.minRows; }
開發者ID:mstawick,項目名稱:material2,代碼行數:2,代碼來源:autosize.ts


注:本文中的@angular/core.Input函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。