角度错误:“ mat-form-field'不是已知元素”

问题描述

我正在使用stackblitz代码编辑器,并尝试使用有角度的材质在我的应用中实现日历,但是出现了此错误

enter image description here

这是链接 https://stackblitz.com/edit/angular-ivy-2ucboy?file=src/app/app.component.ts

解决方法

由于某种原因,您正在main.ts中引导应用程序吗?因此,您实际的app.module.ts文件是多余的。您需要将相关模块导入main.ts文件中,因为这是您声明AppModule的地方。

请参见this工作演示。