Mat Form Field Is Not A Known Element

[Solved] Mat Form Field Is Not A Known Element | Typescript - Code Explorer | yomemimo.com
Question : 'mat-form-field' is not a known element:

Answered by : augusto-vicente

@NgModule({ imports: [ MatButtonModule, MatFormFieldModule, MatInputModule, MatRippleModule, ] ....

Source : https://stackoverflow.com/a/48100326/13384755 | Last Update : Fri, 24 Jul 20

Question : mat-form-field is not known element

Answered by : embarrassed-echidna-j7oww6pmx8s5

import { MatDialogModule } from "@angular/material/dialog";
import { MatCardModule } from "@angular/material/card";
import { MatButtonModule } from "@angular/material/button";
imports: [ MatDialogModule, MatCardModule, MatButtonModule
]

Source : https://stackoverflow.com/questions/48100238/mat-form-field-is-not-a-known-element-angular-5-material2/60767129#60767129 | Last Update : Wed, 02 Nov 22

Question : 'mat-form-field' is not a known element

Answered by : augusto-vicente

@NgModule({ imports: [	...	MatFormFieldModule, MatInputModule, ... ]
})

Source : https://stackoverflow.com/a/48100326/13384755 | Last Update : Wed, 26 Aug 20

Answers related to mat form field is not a known element

Code Explorer Popular Question For Typescript