Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <script setup lang="ts"> import NavBar from './components/NavBar.vue'; </script> <template> <main class="content"> <NavBar /> </main> </template> <style scoped> .content { padding-top: 100px; /* Platz für fixierten Header (60px Logo + Padding) */ } </style>
<script setup lang="ts"> import NavBar from './components/NavBar.vue'; </script> <template> <main class="content"> <NavBar /> </main> </template> <style scoped> .content { padding-top: 100px; /* Platz für fixierten Header (60px Logo + Padding) */ } </style>