feat(frontend): Skelet voor de implementatie van views & services voor leerpaden aangemaakt.

This commit is contained in:
Gerald Schmittinger 2025-03-22 16:16:34 +01:00
parent 30ec73a88d
commit 8b0fc4263f
7 changed files with 290 additions and 7 deletions

View file

@ -0,0 +1,20 @@
<script setup lang="ts">
import {ref} from "vue";
const learningObjects = ref([
])
</script>
<template>
<v-navigation-drawer>
<v-list-item title="My Application" subtitle="Vuetify"></v-list-item>
<v-divider></v-divider>
<v-list-item link title="List Item 1"></v-list-item>
<v-list-item link title="List Item 2"></v-list-item>
<v-list-item link title="List Item 3"></v-list-item>
</v-navigation-drawer>
</template>
<style scoped>
</style>