为什么我的mat-form-field不显示标签?



我使用角材料来构建一个页面,我试图使用mat-form-field组件,但标签不工作,我不知道为什么。有谁能帮帮我吗,谢谢大家。

app.module.ts:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { SignInComponent } from './views/sign-in/sign-in.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatFormFieldModule } from "@angular/material/form-field";
@NgModule({
declarations: [
AppComponent,
SignInComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
MatFormFieldModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

sign-in.component.ts:

import { Component } from '@angular/core';
@Component({
selector: 'app-sign-in',
templateUrl: './sign-in.component.html',
styleUrls: ['./sign-in.component.css']
})
export class SignInComponent {
}

sign-in.component.html:

<form>
<mat-form-field appearance="fill">
<mat-label>Login</mat-label>
<input matInput type="text">
</mat-form-field>
</form>

我解决了我的问题,问题是,以mat-form-field显示标签,它必须导入MatInputModule,因为现在感谢每一个帮助过我的人。

相关内容

  • 没有找到相关文章

最新更新