]> 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 03:42:40 +0000 (03:42 +0000)
committerGitHub <noreply@github.com>
Tue, 15 Apr 2025 03:42:40 +0000 (03:42 +0000)
packages-private/vapor-e2e-test/keepalive/App.vue
packages-private/vapor-e2e-test/keepalive/components/VdomComp.vue

index b7c088f8374ce73c90157744ce48b9c4096468bb..c388228eb5bccd610607bc530303a6384a761567 100644 (file)
@@ -1,6 +1,6 @@
 <script vapor>
 import { ref } from 'vue'
-import VdomComp from './components/VdomComp.vue';
+import VdomComp from './components/VdomComp.vue'
 
 window.calls = []
 window.getCalls = () => {
index ca173c560d883024e6d114288eee1e98d6e62da7..4c539e9de943c9976e9fa4653d1e67d0c87c2b2a 100644 (file)
@@ -3,18 +3,18 @@ import { onActivated, onDeactivated, onMounted, onUnmounted, ref } from 'vue'
 const msg = ref('vdom')
 
 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" />
-</template>
\ No newline at end of file
+  <input type="text" v-model="msg" />
+</template>