gpt4 book ai didi

angular - 如何使用mat-tab? mat-tab is not a known element 错误

转载 作者:太空狗 更新时间:2023-10-29 17:29:47 26 4
gpt4 key购买 nike

我正在尝试使用 mat-tab。我在html中添加了以下代码

<mat-tab-group>
<mat-tab label="Tab 1"> <app-latest-article></app-latest-article></mat-tab>
<mat-tab label="Tab 2"> <app-trending-article></app-trending-article> </mat-tab>
</mat-tab-group>

在ts文件中

import {MatTabsModule} from '@angular/material/tabs';

我遇到了错误

Uncaught Error: Template parse errors:
'mat-tab' is not a known element:
1. If 'mat-tab' is an Angular component, then verify that it is part of this module.
2. If 'mat-tab' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("
</ngx-tabset> -->

最佳答案

在您的 module.ts 文件中添加导入并将其添加到导入中(如果您使用多个 module.ts 文件,请将其添加到负责您的组件的文件中)。

import { MatTabsModule } from '@angular/material';

@NgModule({
imports: [
...
MatTabsModule,
...
],
declarations: [
...
],
providers: []
})

export class AppModule {}

关于angular - 如何使用mat-tab? mat-tab is not a known element 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50148800/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com