Explorar o código

Calendar: fix locale error

iamkun %!s(int64=6) %!d(string=hai) anos
pai
achega
b12695fff4
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      packages/calendar/src/main.vue

+ 2 - 1
packages/calendar/src/main.vue

@@ -188,7 +188,8 @@ export default {
     date() {
       if (!this.value) {
         if (this.realSelectedDay) {
-          return new Date(this.selectedDay);
+          const d = this.selectedDay.split('-');
+          return new Date(d[0], d[1] - 1, d[2]);
         } else if (this.validatedRange.length) {
           return this.validatedRange[0][0];
         }