✨(component): update
This commit is contained in:
parent
fa84d00a00
commit
051ba684ca
@ -437,17 +437,23 @@ const classes = computed(() => {
|
|||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(() => props.height, () => {
|
watch(
|
||||||
nextTick(() => {
|
() => props.height,
|
||||||
getScrollWidth();
|
() => {
|
||||||
})
|
nextTick(() => {
|
||||||
})
|
getScrollWidth();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
watch(() => props.maxHeight, () => {
|
watch(
|
||||||
nextTick(() => {
|
() => props.maxHeight,
|
||||||
getScrollWidth();
|
() => {
|
||||||
})
|
nextTick(() => {
|
||||||
})
|
getScrollWidth();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getScrollWidth();
|
getScrollWidth();
|
||||||
|
Loading…
Reference in New Issue
Block a user