“Mat-Form-Field должен содержать MatformfieldControl” Ответ

Mat-Form-Field должен содержать MatformfieldControl

@NgModule({
    imports: [
        MatInputModule
    ],
    exports: [
        MatInputModule
    ]
})
GutoTrosla

Mat-Form-Field должен содержать MatformfieldControl

Maybe you need to close <input> tag:

<!-- Wrong -->
<mat-form-field>
  <input matInput>
</mat-form-field>

<!-- Right -->
<mat-form-field>
  <input matInput />
</mat-form-field>
Selfish Serval

Mat-Form-Field должен содержать флажок MatformfieldControl

The following Angular Material components are designed to work inside a <mat-form-field>:

<input matNativeControl> & <textarea matNativeControl> (version 7 & newer)
<select matNativeControl> (version 7 & newer)
<input matInput> & <textarea matInput> (version 5 & 6)
<mat-select>
<mat-chip-list>
Lively Llama

Ответы похожие на “Mat-Form-Field должен содержать MatformfieldControl”

Вопросы похожие на “Mat-Form-Field должен содержать MatformfieldControl”

Больше похожих ответов на “Mat-Form-Field должен содержать MatformfieldControl” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования