fix(floating-bubble): update offset when the value changed (#12730)

This commit is contained in:
chouchouji 2024-03-25 22:18:00 +08:00 committed by GitHub
parent f578ac2d3f
commit 8b56a4dd23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -205,6 +205,7 @@ export default defineComponent({
watch( watch(
[windowWidth, windowHeight, () => props.gap, () => props.offset], [windowWidth, windowHeight, () => props.gap, () => props.offset],
updateState, updateState,
{ deep: true },
); );
const show = ref(true); const show = ref(true);