]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
[autofix.ci] apply automated fixes
authorautofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Tue, 15 Apr 2025 06:17:06 +0000 (06:17 +0000)
committerGitHub <noreply@github.com>
Tue, 15 Apr 2025 06:17:06 +0000 (06:17 +0000)
packages-private/vapor-e2e-test/interop/App.vue
packages-private/vapor-e2e-test/interop/components/SimpleVaporComp.vue

index cc117b954a45c6af8002205135e9a3b09a9e92d4..10a5a584749f6be27e62906eff1658452a8e62de 100644 (file)
@@ -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
 }
 
index 873fc9719b64e7aa08066721b34485a1041d93eb..7f8dc4808c39d9a6ad1d8f6c783060fc9eff90e4 100644 (file)
@@ -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')
 })
 </script>
 <template>
-    <input type="text" v-model="msg" />
+  <input type="text" v-model="msg" />
 </template>