소스 검색

fix: the date string cannot be converted to Date

2000-10-10 -> Invalid Date, must use 2000/10/10 format in some browers
daigang 3 년 전
부모
커밋
0405dff25a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/utils/event.js

+ 1 - 1
src/utils/event.js

@@ -63,7 +63,7 @@ function offsetWeek (week, offset) {
 }
 
 export function toDate (val) {
-  return val && new Date(val)
+  return val && new Date(typeof val === 'string' ? val.replace(/-/g, '/') : val)
 }
 
 export function pickMax (a, b) {