@coreui/vue-pro 4.7.0-alpha.0 → 4.7.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -482,6 +482,7 @@ const CDateRangePicker = defineComponent({
|
|
|
482
482
|
() => {
|
|
483
483
|
if (props.startDate) {
|
|
484
484
|
calendarDate.value = new Date(props.startDate)
|
|
485
|
+
startDate.value = new Date(props.startDate)
|
|
485
486
|
}
|
|
486
487
|
},
|
|
487
488
|
)
|
|
@@ -491,6 +492,7 @@ const CDateRangePicker = defineComponent({
|
|
|
491
492
|
() => {
|
|
492
493
|
if (props.endDate) {
|
|
493
494
|
calendarDate.value = new Date(props.endDate)
|
|
495
|
+
endDate.value = new Date(props.endDate)
|
|
494
496
|
}
|
|
495
497
|
},
|
|
496
498
|
)
|