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
Raw Normal View History

2023-07-14 15:07:00 +00:00
<template>
2023-07-15 09:34:46 +00:00
<router-view/>
2023-07-15 10:52:21 +00:00
<bottomNavigation/>
2023-07-14 15:07:00 +00:00
</template>
2023-07-15 08:03:08 +00:00
<script setup>
2023-07-15 09:34:46 +00:00
import {RouterView} from 'vue-router';
2023-07-15 10:52:21 +00:00
import bottomNavigation from '@/components/BottomNavigation.vue';
2023-07-15 08:03:08 +00:00
</script>