Migrate to Vue.js #28

Merged
jakob.scheid merged 22 commits from feature/migrate-to-vue-js into main 2026-05-07 14:20:13 +02:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 06e3601d70 - Show all commits
+6
View File
@@ -1,3 +1,9 @@
<script setup>
import Navbar from './features/nav/components/Navbar.vue';
</script>
<template>
<Navbar />
<router-view />
</template>
+7
View File
@@ -0,0 +1,7 @@
<template>
<nav class="global-nav">
<span id="logo">Seekra</span>
<ul>
</ul>
</nav>
</template>