mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Tabs): should scroll active tab into view after resized (#11777)
This commit is contained in:
parent
cbaa4b0d3a
commit
f10557a211
@ -424,7 +424,11 @@ export default defineComponent({
|
||||
|
||||
const resize = () => {
|
||||
setLine();
|
||||
nextTick(() => contentRef.value?.swipeRef.value?.resize());
|
||||
|
||||
nextTick(() => {
|
||||
scrollIntoView(true);
|
||||
contentRef.value?.swipeRef.value?.resize();
|
||||
});
|
||||
};
|
||||
|
||||
watch(
|
||||
|
Loading…
x
Reference in New Issue
Block a user