Changeset 2a2614e for ReserveNGo-frontend/src/App.vue
- Timestamp:
- 01/26/25 00:32:02 (3 months ago)
- Branches:
- master
- Children:
- 231918f
- Parents:
- 9bcad23
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ReserveNGo-frontend/src/App.vue
r9bcad23 r2a2614e 1 <script setup>1 <script> 2 2 //import { RouterLink, RouterView } from 'vue-router' 3 3 import NavBar from './components/Project/Nav_bar_new.vue' 4 4 import Footer_ from '@/components/Project/Footer_.vue' 5 import { userStore } from '@/PiniaStores/UserStore.js' 5 6 6 7 8 9 10 7 export default { 8 components: { 9 NavBar, 10 Footer_, 11 }, 12 beforeMount() { 13 userStore().getLocalStorage() 14 }, 15 } 11 16 </script> 12 17 13 18 <template> 14 <!-- <header>19 <!-- <header> 15 20 <img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="125" height="125" /> 16 21 … … 30 35 <NavBar></NavBar> 31 36 <main> 32 <router-view />37 <router-view /> 33 38 </main> 34 39 <footer> … … 41 46 </div> 42 47 43 44 45 46 47 48 <!-- <Locale_listing_container></Locale_listing_container> 48 <!-- <Locale_listing_container></Locale_listing_container> 49 49 <Locale_listing_container></Locale_listing_container> 50 50 <Locale_listing_container></Locale_listing_container>--> 51 52 53 51 </template> 54 52 55 53 <style scoped> 56 57 54 .wrapper { 58 55 display: flex; … … 64 61 flex: 1; /*istrazi*/ 65 62 } 66 footer {67 background: #8377 D1;63 footer { 64 background: #8377d1; 68 65 } 69 66 70 template{ background: #FBFFF1;} 67 template { 68 background: #fbfff1; 69 } 71 70 /*header { 72 71 line-height: 1.5;
Note:
See TracChangeset
for help on using the changeset viewer.