@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/dist/index.js
CHANGED
|
@@ -13010,11 +13010,13 @@ const CDateRangePicker = vue.defineComponent({
|
|
|
13010
13010
|
vue.watch(() => props.startDate, () => {
|
|
13011
13011
|
if (props.startDate) {
|
|
13012
13012
|
calendarDate.value = new Date(props.startDate);
|
|
13013
|
+
startDate.value = new Date(props.startDate);
|
|
13013
13014
|
}
|
|
13014
13015
|
});
|
|
13015
13016
|
vue.watch(() => props.endDate, () => {
|
|
13016
13017
|
if (props.endDate) {
|
|
13017
13018
|
calendarDate.value = new Date(props.endDate);
|
|
13019
|
+
endDate.value = new Date(props.endDate);
|
|
13018
13020
|
}
|
|
13019
13021
|
});
|
|
13020
13022
|
vue.watch(() => props.maxDate, () => {
|