From: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 15 Apr 2025 06:17:06 +0000 (+0000) Subject: [autofix.ci] apply automated fixes X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2134b87d0d4cb19456ba961e917c2806ed82ad60;p=thirdparty%2Fvuejs%2Fcore.git [autofix.ci] apply automated fixes --- 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') })