在Angular Material中,可以使用
和
来创建选项卡。要在选择活动选项卡时加载和卸载组件,可以使用ngTemplateOutlet
指令和动态组件。
首先,创建一个包含选项卡和动态组件的父组件。在父组件的模板中,使用
来创建选项卡,并在每个选项卡上使用ng-template
来定义动态组件。同时,使用[selectedIndex]
属性来绑定当前活动选项卡的索引。
{{ tab.label }}
在父组件的Typescript代码中,定义选项卡的数组和当前活动选项卡的索引。例如:
import { Component } from '@angular/core';
@Component({
selector: 'app-tabs',
templateUrl: './tabs.component.html',
styleUrls: ['./tabs.component.css']
})
export class TabsComponent {
tabs = [
{ label: 'Tab 1', index: 0, content: this.tab1Content },
{ label: 'Tab 2', index: 1, content: this.tab2Content },
{ label: 'Tab 3', index: 2, content: this.tab3Content }
];
activeTabIndex = 0;
// Define the tab contents as template references
tab1Content = this.tab1;
tab2Content = this.tab2;
tab3Content = this.tab3;
// Define the tab contents as template variables
// You can replace these with your own components
tab1 = this.tab1Template;
tab2 = this.tab2Template;
tab3 = this.tab3Template;
// Define the templates for the tab contents
tab1Template = `
`;
tab2Template = `
`;
tab3Template = `
`;
}
在上面的代码中,tabs
数组包含每个选项卡的标签、索引和内容。activeTabIndex
表示当前活动选项卡的索引。tab1Content
、tab2Content
和tab3Content
分别是指向对应选项卡内容的变量。
在父组件的模板中,使用ng-container
和ngTemplateOutlet
来加载选中选项卡的组件内容。只有当activeTabIndex
等于选项卡的索引时,才会加载对应的组件内容。
请注意,上述代码中的tab1
、tab2
和tab3
是模板变量,你需要将它们替换为你自己的组件。
这样,在选择活动选项卡时,Angular Material会根据ngIf
指令动态加载和卸载组件。