@angular/material/tabs#MatTabGroup TypeScript Examples
The following examples show how to use
@angular/material/tabs#MatTabGroup.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: dxc-tabs.module.ts From halstack-angular with Apache License 2.0 | 6 votes |
@NgModule({
declarations: [DxcTabsComponent, DxcTabComponent, DxcTabIconComponent],
imports: [
CommonModule,
MatInputModule,
MatTabsModule,
MatFormFieldModule,
DxcBadgeModule,
FormsModule,
],
exports: [DxcTabsComponent, DxcTabComponent, DxcTabIconComponent],
entryComponents: [MatTab, MatTabGroup],
})
export class DxcTabsModule {}
Example #2
Source File: options-dialog.component.ts From leapp with Mozilla Public License 2.0 | 5 votes |
@ViewChild("tabs", { static: false })
tabGroup: MatTabGroup;
Example #3
Source File: addon-detail.component.ts From WowUp with GNU General Public License v3.0 | 5 votes |
@ViewChild("tabs", { static: false }) public tabGroup!: MatTabGroup;
Example #4
Source File: dxc-tabs.component.ts From halstack-angular with Apache License 2.0 | 5 votes |
@ViewChild("tabGroup", { static: true })
public tabGroup: MatTabGroup;
Example #5
Source File: content.component.ts From open-source with MIT License | 5 votes |
@ViewChild(MatTabGroup) tabs: MatTabGroup;
Example #6
Source File: workflow-list.component.ts From workflow-editor with Educational Community License v2.0 | 5 votes |
@ViewChild(MatTabGroup, { read: MatTabGroup })
public tabGroup: MatTabGroup;