2025-07-24 16:08:17 +02:00
|
|
|
<script setup lang="ts">
|
2025-10-03 13:19:20 +02:00
|
|
|
import { RouterView } from 'vue-router';
|
|
|
|
|
import KFooter from '@/components/KFooter.vue';
|
|
|
|
|
import KNavbar from '@/components/KNavbar.vue';
|
2025-07-24 16:08:17 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-10-03 13:19:20 +02:00
|
|
|
<KNavbar />
|
2025-07-24 16:08:17 +02:00
|
|
|
<main>
|
2025-10-03 13:19:20 +02:00
|
|
|
<RouterView />
|
2025-07-24 16:08:17 +02:00
|
|
|
</main>
|
2025-10-03 13:19:20 +02:00
|
|
|
<KFooter />
|
2025-07-24 16:08:17 +02:00
|
|
|
</template>
|