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
|
// Utils
|
||||||
import {
|
import {
|
||||||
@ -165,14 +173,15 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const init = () => {
|
||||||
|
nextTick(onScroll);
|
||||||
|
};
|
||||||
|
|
||||||
useEventListener('scroll', onScroll, { target: scrollParent });
|
useEventListener('scroll', onScroll, { target: scrollParent });
|
||||||
|
|
||||||
watch(
|
onMounted(init);
|
||||||
() => props.indexList,
|
|
||||||
() => {
|
watch(() => props.indexList, init);
|
||||||
nextTick(onScroll);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
watch(activeAnchor, (value) => {
|
watch(activeAnchor, (value) => {
|
||||||
if (value) {
|
if (value) {
|
||||||
|
@ -162,7 +162,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
>
|
>
|
||||||
Y
|
Y
|
||||||
</span>
|
</span>
|
||||||
<span class="van-index-bar__index"
|
<span class="van-index-bar__index van-index-bar__index--active"
|
||||||
data-index="Z"
|
data-index="Z"
|
||||||
>
|
>
|
||||||
Z
|
Z
|
||||||
@ -869,8 +869,10 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div style="height: 0px;">
|
||||||
<div class="van-index-anchor">
|
<div class="van-index-anchor van-index-anchor--sticky van-hairline--bottom"
|
||||||
|
style="z-index: undefined;"
|
||||||
|
>
|
||||||
Z
|
Z
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user