Skip to content

Commit

Permalink
fix: avoid router warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Jan 25, 2024
1 parent 9e32076 commit 16a316a
Show file tree
Hide file tree
Showing 4 changed files with 184 additions and 179 deletions.
8 changes: 5 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
>
<div id="app">
<!-- TODO: use transition -->
<transition :name="transitionName">
<router-view />
</transition>
<router-view v-slot="{ Component }">
<transition :name="transitionName">
<component :is="Component" />
</transition>
</router-view>
<Notification />
<ResyncConfirmation />
<LogoutModal />
Expand Down
Loading

0 comments on commit 16a316a

Please sign in to comment.