frontend/src/App.vue

9 lines
196 B
Vue
Raw Normal View History

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