Files
hubproxy/web/src/App.vue
2026-07-12 01:19:44 +08:00

15 lines
347 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
import AppShell from '@/components/AppShell.vue'
</script>
<template>
<AppShell>
<RouterView v-slot="{ Component, route }">
<Transition name="page">
<component :is="Component" :key="route.path" />
</Transition>
</RouterView>
</AppShell>
</template>