mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Tabs): resize not work for swipeable tabs (#10964)
This commit is contained in:
parent
717f244d2f
commit
4b2e06b34d
@ -125,6 +125,7 @@ export default defineComponent({
|
|||||||
const root = ref<HTMLElement>();
|
const root = ref<HTMLElement>();
|
||||||
const navRef = ref<HTMLElement>();
|
const navRef = ref<HTMLElement>();
|
||||||
const wrapRef = ref<HTMLElement>();
|
const wrapRef = ref<HTMLElement>();
|
||||||
|
const contentRef = ref<ComponentInstance>();
|
||||||
|
|
||||||
const id = useId();
|
const id = useId();
|
||||||
const scroller = useScrollParent(root);
|
const scroller = useScrollParent(root);
|
||||||
@ -477,8 +478,13 @@ export default defineComponent({
|
|||||||
const onRendered = (name: Numeric, title?: string) =>
|
const onRendered = (name: Numeric, title?: string) =>
|
||||||
emit('rendered', name, title);
|
emit('rendered', name, title);
|
||||||
|
|
||||||
|
const resize = () => {
|
||||||
|
setLine();
|
||||||
|
nextTick(() => contentRef.value?.swipeRef.value?.resize());
|
||||||
|
};
|
||||||
|
|
||||||
useExpose({
|
useExpose({
|
||||||
resize: setLine,
|
resize,
|
||||||
scrollTo,
|
scrollTo,
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -514,6 +520,7 @@ export default defineComponent({
|
|||||||
[renderHeader(), slots['nav-bottom']?.()]
|
[renderHeader(), slots['nav-bottom']?.()]
|
||||||
)}
|
)}
|
||||||
<TabsContent
|
<TabsContent
|
||||||
|
ref={contentRef}
|
||||||
count={children.length}
|
count={children.length}
|
||||||
inited={state.inited}
|
inited={state.inited}
|
||||||
animated={props.animated}
|
animated={props.animated}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { ref, watch, onMounted, defineComponent } from 'vue';
|
import { ref, watch, onMounted, defineComponent } from 'vue';
|
||||||
import { numericProp, makeRequiredProp, createNamespace } from '../utils';
|
import { numericProp, makeRequiredProp, createNamespace } from '../utils';
|
||||||
import { Swipe, SwipeInstance } from '../swipe';
|
import { Swipe, SwipeInstance } from '../swipe';
|
||||||
|
import { useExpose } from '../composables/use-expose';
|
||||||
|
|
||||||
const [name, bem] = createNamespace('tabs');
|
const [name, bem] = createNamespace('tabs');
|
||||||
|
|
||||||
@ -60,6 +61,8 @@ export default defineComponent({
|
|||||||
swipeToCurrentTab(props.currentIndex);
|
swipeToCurrentTab(props.currentIndex);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
useExpose({ swipeRef });
|
||||||
|
|
||||||
return () => (
|
return () => (
|
||||||
<div
|
<div
|
||||||
class={bem('content', {
|
class={bem('content', {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user