From 2134b87d0d4cb19456ba961e917c2806ed82ad60 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 15 Apr 2025 06:17:06 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages-private/vapor-e2e-test/interop/App.vue | 10 +++++----- .../interop/components/SimpleVaporComp.vue | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages-private/vapor-e2e-test/interop/App.vue b/packages-private/vapor-e2e-test/interop/App.vue index cc117b954a..10a5a58474 100644 --- a/packages-private/vapor-e2e-test/interop/App.vue +++ b/packages-private/vapor-e2e-test/interop/App.vue @@ -4,12 +4,12 @@ import VaporComp from './VaporComp.vue' import SimpleVaporComp from './components/SimpleVaporComp.vue' const msg = ref('hello') -const passSlot = ref(true); +const passSlot = ref(true) -(window as any).calls = []; -(window as any).getCalls = () => { - const ret = (window as any).calls.slice(); - (window as any).calls = [] +;(window as any).calls = [] +;(window as any).getCalls = () => { + const ret = (window as any).calls.slice() + ;(window as any).calls = [] return ret } diff --git a/packages-private/vapor-e2e-test/interop/components/SimpleVaporComp.vue b/packages-private/vapor-e2e-test/interop/components/SimpleVaporComp.vue index 873fc9719b..7f8dc4808c 100644 --- a/packages-private/vapor-e2e-test/interop/components/SimpleVaporComp.vue +++ b/packages-private/vapor-e2e-test/interop/components/SimpleVaporComp.vue @@ -3,18 +3,18 @@ import { onActivated, onDeactivated, onMounted, onUnmounted, ref } from 'vue' const msg = ref('vapor') onMounted(() => { - window.calls.push('mounted') + window.calls.push('mounted') }) onActivated(() => { - window.calls.push('activated') + window.calls.push('activated') }) onDeactivated(() => { - window.calls.push('deactivated') + window.calls.push('deactivated') }) onUnmounted(() => { - window.calls.push('unmounted') + window.calls.push('unmounted') }) -- 2.47.2