Files
runbin/web/src/App.vue
lhx-666-cool f6cb277519 add web
2025-04-25 17:03:25 +08:00

9 lines
199 B
Vue

<template>
<div class="flex flex-col h-screen">
<NavBar />
<router-view :key="$route.fullPath" />
</div>
</template>
<script setup>
import NavBar from './components/NavBar.vue';
</script>