frontend/src/App.vue

9 lines
No EOL
196 B
Vue

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