fix(PickerGroup): fix style of tab-line caused by v-show (#11547)

* fix(PickerGroup): fix style of tab-line caused by v-show

* chore: replce ResizeObserver api with useVisibilityChange
This commit is contained in:
Gavin 2023-02-11 22:17:43 +08:00 committed by GitHub
parent 4bd7e85b5d
commit a21833f973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,6 +49,7 @@ import { route, RouteProps } from '../composables/use-route';
import { useRefs } from '../composables/use-refs';
import { useExpose } from '../composables/use-expose';
import { onPopupReopen } from '../composables/on-popup-reopen';
import { useVisibilityChange } from '../composables/use-visibility-change';
// Components
import { Sticky } from '../sticky';
@ -472,6 +473,7 @@ export default defineComponent({
onActivated(setLine);
onPopupReopen(setLine);
onMountedOrActivated(init);
useVisibilityChange(root, setLine);
useEventListener('scroll', onScroll, {
target: scroller,
passive: true,