Я не понимаю.Я думаю, что я импортировал весь необходимый модуль, но он продолжает говорить мне:
'mat-button' is not a known element:
app.module.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 {}
app.component.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
) правильно.Кто-нибудь знает, что я могу сделать?