gpt4 book ai didi

angular - mat-button 不是已知元素

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

我不明白。我想我导入了所有必要的模块,但它一直告诉我:

'mat-button' is not a known element:

应用程序模块.ts:

import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { MatButtonModule } from '@angular/material/button';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

import { AppComponent } from './app.component';

@NgModule({
imports: [
BrowserModule,
FormsModule,
BrowserAnimationsModule,
MatButtonModule,
],
declarations: [AppComponent],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}

应用程序组件.ts:

import { Component } from '@angular/core';

@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.scss'],
})
export class AppComponent {
constructor() {}
}

app.component.html

<mat-button>foo</mat-button>

app.component.scss 是空的。

我知道有很多关于此的帖子。但没有任何帮助,因为我认为我正确导入了所有内容 (MatButtonModule)。有人知道我能做什么吗?

最佳答案

它是:

<button mat-button>foo</button>

不是

<mat-button>foo</mat-button>

Official doc.

关于angular - mat-button 不是已知元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53671845/

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