mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
parent
8d60697ec1
commit
fff5fa9fa7
@ -8,9 +8,10 @@ import {
|
|||||||
onDeactivated,
|
onDeactivated,
|
||||||
onBeforeUnmount,
|
onBeforeUnmount,
|
||||||
defineComponent,
|
defineComponent,
|
||||||
type InjectionKey,
|
nextTick,
|
||||||
type CSSProperties,
|
|
||||||
type ExtractPropTypes,
|
type ExtractPropTypes,
|
||||||
|
type CSSProperties,
|
||||||
|
type InjectionKey,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
@ -248,28 +249,37 @@ export default defineComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isHidden(root)) {
|
const cb = () => {
|
||||||
const rect = {
|
if (!isHidden(root)) {
|
||||||
width: root.value.offsetWidth,
|
const rect = {
|
||||||
height: root.value.offsetHeight,
|
width: root.value!.offsetWidth,
|
||||||
};
|
height: root.value!.offsetHeight,
|
||||||
state.rect = rect;
|
};
|
||||||
state.width = +(props.width ?? rect.width);
|
state.rect = rect;
|
||||||
state.height = +(props.height ?? rect.height);
|
state.width = +(props.width ?? rect.width);
|
||||||
|
state.height = +(props.height ?? rect.height);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (count.value) {
|
||||||
|
active = Math.min(count.value - 1, active);
|
||||||
|
}
|
||||||
|
|
||||||
|
state.active = active;
|
||||||
|
state.swiping = true;
|
||||||
|
state.offset = getTargetOffset(active);
|
||||||
|
children.forEach((swipe) => {
|
||||||
|
swipe.setOffset(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
autoplay();
|
||||||
|
};
|
||||||
|
|
||||||
|
// issue: https://github.com/youzan/vant/issues/10052
|
||||||
|
if (isHidden(root)) {
|
||||||
|
nextTick().then(cb);
|
||||||
|
} else {
|
||||||
|
cb();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count.value) {
|
|
||||||
active = Math.min(count.value - 1, active);
|
|
||||||
}
|
|
||||||
|
|
||||||
state.active = active;
|
|
||||||
state.swiping = true;
|
|
||||||
state.offset = getTargetOffset(active);
|
|
||||||
children.forEach((swipe) => {
|
|
||||||
swipe.setOffset(0);
|
|
||||||
});
|
|
||||||
|
|
||||||
autoplay();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const resize = () => initialize(state.active);
|
const resize = () => initialize(state.active);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user