mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Calendar): content disappeared when hiding (#10910)
* fix(Calendar): content disappeared when hiding * chore: add comment * chore: upd
This commit is contained in:
parent
e5cc32ca97
commit
04494a450d
@ -185,10 +185,6 @@ export default defineComponent({
|
|||||||
const months: Date[] = [];
|
const months: Date[] = [];
|
||||||
const cursor = new Date(props.minDate);
|
const cursor = new Date(props.minDate);
|
||||||
|
|
||||||
if (props.lazyRender && !props.show && props.poppable) {
|
|
||||||
return months;
|
|
||||||
}
|
|
||||||
|
|
||||||
cursor.setDate(1);
|
cursor.setDate(1);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { useRect } from '@vant/use';
|
import { useRect } from '@vant/use';
|
||||||
import { Ref, ref, onMounted, nextTick } from 'vue';
|
import { Ref, ref, onMounted, nextTick } from 'vue';
|
||||||
|
import { onPopupReopen } from './on-popup-reopen';
|
||||||
|
|
||||||
export const useHeight = (
|
export const useHeight = (
|
||||||
element: Element | Ref<Element | undefined>,
|
element: Element | Ref<Element | undefined>,
|
||||||
@ -25,5 +26,11 @@ export const useHeight = (
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// The result of useHeight might be 0 when the popup is hidden,
|
||||||
|
// so we need to reset the height when the popup is reopened.
|
||||||
|
// IntersectionObserver is a better solution, but it is not supported by legacy browsers.
|
||||||
|
// https://github.com/vant-ui/vant/issues/10628
|
||||||
|
onPopupReopen(() => nextTick(setHeight));
|
||||||
|
|
||||||
return height;
|
return height;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user