source: ReserveNGo-frontend/src/components/Project/Locale_details.vue@ a0e93df

Last change on this file since a0e93df was f9ef3e8, checked in by Ljubomir Ilievski <ilievski.ljubomir@…>, 3 months ago

Ready to begin with connection with backend

  • Property mode set to 100644
File size: 746 bytes
Line 
1<script>
2
3
4import { restaurantStore } from '@/PiniaStores/restaurantStore.js'
5
6export default {
7 data(){
8 return {
9 restaurant:{
10 name: '',
11 address: ''
12 },
13 restaurantStore: restaurantStore()
14 }
15 }
16}
17
18</script>
19
20<template>
21 <div id="container" class="border px-5 py-2">
22 <p>Local details...</p>
23 <p>Working hours: {{restaurantStore.workingHours}}</p>
24 <ul>
25 <li>Service 1</li>
26 <li>Service 2</li>
27 <li>Service 3</li>
28 </ul>
29 <p>Average rating...</p>
30 <button class="btn btn-dark">More details</button>
31 <button class="btn btn-dark ms-2">Make reservation</button>
32 </div>
33</template>
34
35<style scoped>
36
37#container {
38
39 font-size: 20px;
40
41}
42
43</style>
Note: See TracBrowser for help on using the repository browser.