This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/App.vue

9 lines
196 B
Vue

<template>
<router-view/>
<bottomNavigation/>
</template>
<script setup>
import {RouterView} from 'vue-router';
import bottomNavigation from '@/components/BottomNavigation.vue';
</script>