App.vue 240 B

123456789101112
  1. <template>
  2. <div class="min-h-screen bg-gray-950 flex flex-col">
  3. <NavBar />
  4. <div class="flex-1">
  5. <RouterView />
  6. </div>
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. import NavBar from './components/NavBar.vue'
  11. </script>