Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Mar 6, 2025
1 parent b65db59 commit 0f3dffc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions packages-private/vapor-e2e-test/transition/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import VaporCompA from './components/VaporCompA.vue'
import VaporCompB from './components/VaporCompB.vue'
const activeComponent = shallowRef(VaporCompA)
function toggleComponent() {
activeComponent.value = activeComponent.value === VaporCompA ? VaporCompB : VaporCompA
activeComponent.value =
activeComponent.value === VaporCompA ? VaporCompB : VaporCompA
}
</script>

Expand Down Expand Up @@ -42,6 +43,6 @@ function toggleComponent() {
</template>
<style>
.keyed {
height: 100px
height: 100px;
}
</style>
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
const msg = 'vapor compB'
</script>
<template>
<div>{{ msg }}</div>
</template>
<div>{{ msg }}</div>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
const msg = 'vapor compA'
</script>
<template>
<div>{{ msg }}</div>
</template>
<div>{{ msg }}</div>
</template>
2 changes: 1 addition & 1 deletion packages-private/vapor-e2e-test/transition/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
}

0 comments on commit 0f3dffc

Please sign in to comment.