我从 Angular7 和 Material fwk 开始,我在我的应用程序模块上加载了一些模块:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatButtonModule, MatCheckboxModule, MatToolbarModule, MatSidenavModule, MatListModule, MatIconModule, MatSelectModule } from '@angular/material';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
AppRoutingModule,
MatButtonModule,
MatToolbarModule,
MatListModule,
MatIconModule,
MatSidenavModule,
MatCheckboxModule,
MatSelectModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
所有这些模块都已加载,我可以使用它们,除了 mat-button
<mat-toolbar class="menu" color="primary">
<mat-icon>public</mat-icon>
<div class="fill-space"></div>
<mat-button>
<mat-icon>explore</mat-icon>
</mat-button>
</mat-toolbar>
我收到了这个错误:
Uncaught Error: Template parse errors:
'mat-button' is not a known element:
1. If 'mat-button' is an Angular component, then verify that it is part of this module.
2. If 'mat-button' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message
我尝试了不同的技巧,删除/清理并重新安装,但所有材料组件都可以工作,除了垫子按钮。
package.json 中的 Material 和 Angular 在 7.0.1 版本中
感谢您的时间/帮助