Skip to content

Commit cb7d570

Browse files
committed
misc: fixes typescript error in App.vue
1 parent df3acb2 commit cb7d570

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import SideBar from '@/components/SideBar.vue'
1111
<SideBar />
1212
<div class="min-h-full px-4 w-full overflow-hidden">
1313
<router-view v-slot="{ Component, route }">
14-
<transition :name="route.meta.transition" mode="out-in">
14+
<transition :name="route.meta.transition as string | undefined" mode="out-in">
1515
<component :is="Component" />
1616
</transition>
1717
</router-view>

0 commit comments

Comments
 (0)