Skip to content

Commit fb9429e

Browse files
Add logging
1 parent 6ad0e07 commit fb9429e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/js/rangedate-picker.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ export default {
202202
}
203203
},
204204
created () {
205+
console.log(this.maxDate)
205206
if (this.initPreset) {
206207
this.updatePreset(this.presets[this.initPreset]())
207208
}
@@ -361,6 +362,7 @@ export default {
361362
},
362363
isDateAfterMax (startMonthDay, endMonthDate) {
363364
if (!this.maxDate) return false
365+
console.log(endMonthDate)
364366
return (endMonthDate > this.maxDate)
365367
},
366368
goPrevMonth () {

0 commit comments

Comments
 (0)