Skip to content

Commit 90f23e2

Browse files
[autofix.ci] apply automated fixes
1 parent 3278078 commit 90f23e2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

packages-private/vapor-e2e-test/keepalive/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script vapor>
22
import { ref } from 'vue'
3-
import VdomComp from './components/VdomComp.vue';
3+
import VdomComp from './components/VdomComp.vue'
44
55
window.calls = []
66
window.getCalls = () => {

packages-private/vapor-e2e-test/keepalive/components/VdomComp.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ import { onActivated, onDeactivated, onMounted, onUnmounted, ref } from 'vue'
33
const msg = ref('vdom')
44
55
onMounted(() => {
6-
window.calls.push('mounted')
6+
window.calls.push('mounted')
77
})
88
onActivated(() => {
9-
window.calls.push('activated')
9+
window.calls.push('activated')
1010
})
1111
onDeactivated(() => {
12-
window.calls.push('deactivated')
12+
window.calls.push('deactivated')
1313
})
1414
onUnmounted(() => {
15-
window.calls.push('unmounted')
15+
window.calls.push('unmounted')
1616
})
1717
</script>
1818
<template>
19-
<input type="text" v-model="msg" />
20-
</template>
19+
<input type="text" v-model="msg" />
20+
</template>

0 commit comments

Comments
 (0)