mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(IndexBar): failed to render active anchor when inited (#8164)
This commit is contained in:
parent
57a36967c5
commit
9e05d21445
@ -1,4 +1,12 @@
|
||||
import { ref, watch, computed, nextTick, PropType, CSSProperties } from 'vue';
|
||||
import {
|
||||
ref,
|
||||
watch,
|
||||
computed,
|
||||
nextTick,
|
||||
PropType,
|
||||
onMounted,
|
||||
CSSProperties,
|
||||
} from 'vue';
|
||||
|
||||
// Utils
|
||||
import {
|
||||
@ -165,14 +173,15 @@ export default createComponent({
|
||||
}
|
||||
};
|
||||
|
||||
const init = () => {
|
||||
nextTick(onScroll);
|
||||
};
|
||||
|
||||
useEventListener('scroll', onScroll, { target: scrollParent });
|
||||
|
||||
watch(
|
||||
() => props.indexList,
|
||||
() => {
|
||||
nextTick(onScroll);
|
||||
}
|
||||
);
|
||||
onMounted(init);
|
||||
|
||||
watch(() => props.indexList, init);
|
||||
|
||||
watch(activeAnchor, (value) => {
|
||||
if (value) {
|
||||
|
@ -162,7 +162,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
>
|
||||
Y
|
||||
</span>
|
||||
<span class="van-index-bar__index"
|
||||
<span class="van-index-bar__index van-index-bar__index--active"
|
||||
data-index="Z"
|
||||
>
|
||||
Z
|
||||
@ -869,8 +869,10 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<div class="van-index-anchor">
|
||||
<div style="height: 0px;">
|
||||
<div class="van-index-anchor van-index-anchor--sticky van-hairline--bottom"
|
||||
style="z-index: undefined;"
|
||||
>
|
||||
Z
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user