在 angular material 的垂直标签列表中添加标签按钮
add tab button in vertical tab listing in angular material
我已经使用 angular material 创建了垂直标签并想添加 Add Tab
按钮,我可以添加该按钮,但它是在底部添加的。我想在垂直选项卡列表中添加该按钮。
这里是 stackblitz link,它在单击按钮时添加选项卡。 Add Tab
按钮应该在垂直标签中。
html:
<mat-tab-group [selectedIndex]="selected.value" (selectedIndexChange)="selected.setValue($event)">
<mat-tab *ngFor="let tab of tabs; let index = index" [label]="tab">
Contents for {{tab}} tab
</mat-tab>
</mat-tab-group>
<button mat-raised-button class="example-add-tab-button add-tab-btn" (click)="addTab()"> Add Tab </button>
TS:
import {Component} from '@angular/core';
import { FormControl} from '@angular/forms';
/**
* @title Basic use of the tab group
*/
@Component({
selector: 'tab-group-basic-example',
templateUrl: 'tab-group-basic-example.html',
styleUrls: ['tab-group-basic-example.css'],
})
export class TabGroupBasicExample {
tabs = ['First', 'Second'];
selected = new FormControl(0);
selectAfterAdding: boolean;
addTab() {
this.selectAfterAdding = true;
this.tabs.push('New');
if(this.selectAfterAdding) {
this.selected.setValue(this.tabs.length - 1);
}
}
}
如何添加Add Tab
按钮垂直标签?
<mat-tab-group [selectedIndex]="selected.value" (selectedIndexChange)="selected.setValue($event)">
<mat-tab disabled>
<ng-template mat-tab-label>
<button mat-icon-button (click)="addTab()">
<mat-icon>add_circle</mat-icon>
</button>
</ng-template>
</mat-tab>
<mat-tab *ngFor="let tab of tabs; let index = index" [label]="tab">
Contents for {{tab}} tab
</mat-tab>
</mat-tab-group>
在你的 ng-for
之前或之后使用它
您的 flex-direction 是 "column"。您需要将此 "column" 更改为 "row";
.mat-tab-labels{
flex-direction:row !important;
}
我已经使用 angular material 创建了垂直标签并想添加 Add Tab
按钮,我可以添加该按钮,但它是在底部添加的。我想在垂直选项卡列表中添加该按钮。
这里是 stackblitz link,它在单击按钮时添加选项卡。 Add Tab
按钮应该在垂直标签中。
html:
<mat-tab-group [selectedIndex]="selected.value" (selectedIndexChange)="selected.setValue($event)">
<mat-tab *ngFor="let tab of tabs; let index = index" [label]="tab">
Contents for {{tab}} tab
</mat-tab>
</mat-tab-group>
<button mat-raised-button class="example-add-tab-button add-tab-btn" (click)="addTab()"> Add Tab </button>
TS:
import {Component} from '@angular/core';
import { FormControl} from '@angular/forms';
/**
* @title Basic use of the tab group
*/
@Component({
selector: 'tab-group-basic-example',
templateUrl: 'tab-group-basic-example.html',
styleUrls: ['tab-group-basic-example.css'],
})
export class TabGroupBasicExample {
tabs = ['First', 'Second'];
selected = new FormControl(0);
selectAfterAdding: boolean;
addTab() {
this.selectAfterAdding = true;
this.tabs.push('New');
if(this.selectAfterAdding) {
this.selected.setValue(this.tabs.length - 1);
}
}
}
如何添加Add Tab
按钮垂直标签?
<mat-tab-group [selectedIndex]="selected.value" (selectedIndexChange)="selected.setValue($event)">
<mat-tab disabled>
<ng-template mat-tab-label>
<button mat-icon-button (click)="addTab()">
<mat-icon>add_circle</mat-icon>
</button>
</ng-template>
</mat-tab>
<mat-tab *ngFor="let tab of tabs; let index = index" [label]="tab">
Contents for {{tab}} tab
</mat-tab>
</mat-tab-group>
在你的 ng-for
之前或之后使用它您的 flex-direction 是 "column"。您需要将此 "column" 更改为 "row";
.mat-tab-labels{
flex-direction:row !important;
}