change folder location

This commit is contained in:
SRP-mango 2023-07-20 14:18:53 +07:00
parent 2aacb390f8
commit 3547bddf17
22 changed files with 1272 additions and 1370 deletions

11
src/App.vue Normal file
View file

@ -0,0 +1,11 @@
<template>
<searchbar/>
<router-view/>
<bottomNavigation/>
</template>
<script setup>
import {RouterView} from 'vue-router';
import searchbar from '@/components/searchbar.vue';
import bottomNavigation from '@/components/BottomNavigation.vue';
</script>