Angular material: MatDatepicker: No provider found for DateAdapter

后端 未结 4 1977
南旧
南旧 2021-01-01 08:27

I\'m trying to use the Datepicker component in Angular Material. Here is my HTML code:



        
4条回答
  •  时光取名叫无心
    2021-01-01 09:01

    Just import the

    MatNativeDateModule

    along with the

    MatDatepickerModule

    at the app.module.ts or app-routing.module.ts.

    @NgModule({
    imports: [
        MatDatepickerModule,
        MatNativeDateModule 
    ]
    })
    

提交回复
热议问题