Angular 2+ How to change Mat-Datepicker date format to DD/MM/YYYY in simplest way?

0
1381

The easiest way is to change the locale:

Add the following to the providers section of your module:

{ provide: MAT_DATE_LOCALE, useValue: 'en-GB' }

Add this above line code in app.module.ts under providers of your project

LEAVE A REPLY

Please enter your comment!
Please enter your name here