vue3-calendar icon indicating copy to clipboard operation
vue3-calendar copied to clipboard

Custom format not working

Open mtleppay opened this issue 7 years ago • 1 comments

Hello, when i'm trying to format date with dots. but it doesn't work. I need 'dd.MM.yyyy' format. Any suggestions?

mtleppay avatar Aug 15 '18 13:08 mtleppay

@mtleppay You can solve the problem by changing next if statement in Calendar component:

if (str.length === 10 && (this.dateFormat === 'dd-MM-yyyy' || this.dateFormat === 'dd/MM/yyyy'))

change to this

if (str.length === 10 && (this.dateFormat === 'dd.MM.yyyy' || this.dateFormat === 'dd-MM-yyyy' || this.dateFormat === 'dd/MM/yyyy'))

crimsonimp avatar Nov 30 '18 13:11 crimsonimp