fix(Tabs): resize not work for swipeable tabs (#10964)

This commit is contained in:
neverland 2022-08-24 21:32:29 +08:00 committed by GitHub
parent 717f244d2f
commit 4b2e06b34d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -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}

View File

@ -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', {