You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
416 B

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
  1. <template>
  2. <div id="app" class="app-container">
  3. <NavBar />
  4. <div class="content-container">
  5. <router-view></router-view>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import NavBar from './components/NavBar.vue'
  11. export default {
  12. components: {
  13. NavBar
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. .app-container {
  19. display: flex;
  20. min-height: 100vh;
  21. }
  22. .content-container {
  23. flex: 1;
  24. padding: 2rem;
  25. }
  26. </style>