GeoffZhu / vue-event-calendar

A simple events calendar for Vue2, no dependencies except Vue2.
http://geoffzhu.cn/vue-event-calendar/
635 stars 228 forks source link

Locale: RU. Change date format #74

Closed Daeghun closed 6 years ago

Daeghun commented 6 years ago

In Russia, date format notation is not using slashes. Instead, they are using dots. https://en.wikipedia.org/wiki/Date_and_time_notation_in_Russia

Right now:

    format: 'MM/yyyy',
    fullFormat: 'dd/MM/yyyy',

Should be:

    format: 'MM.yyyy',
    fullFormat: 'dd.MM.yyyy',