Last change
on this file since 590f667 was 590f667, checked in by Ljubomir Ilievski <ilievski.ljubomir@…>, 3 months ago |
Added Initial frontend
|
-
Property mode
set to
100644
|
File size:
615 bytes
|
Line | |
---|
1 | <script>
|
---|
2 |
|
---|
3 |
|
---|
4 | export default {
|
---|
5 | data(){
|
---|
6 | return {
|
---|
7 | restaurant:{
|
---|
8 | name: '',
|
---|
9 | address: ''
|
---|
10 | }
|
---|
11 | }
|
---|
12 | }
|
---|
13 | }
|
---|
14 |
|
---|
15 | </script>
|
---|
16 |
|
---|
17 | <template>
|
---|
18 | <div id="container" class="border px-5 py-2">
|
---|
19 | <p>Local details...</p>
|
---|
20 | <p>Working hours: xx:yy-xx:yy</p>
|
---|
21 | <ul>
|
---|
22 | <li>Service 1</li>
|
---|
23 | <li>Service 2</li>
|
---|
24 | <li>Service 3</li>
|
---|
25 | </ul>
|
---|
26 | <p>Average rating...</p>
|
---|
27 | <button class="btn btn-dark">More details</button>
|
---|
28 | <button class="btn btn-dark ms-2">Make reservation</button>
|
---|
29 | </div>
|
---|
30 | </template>
|
---|
31 |
|
---|
32 | <style scoped>
|
---|
33 |
|
---|
34 | #container {
|
---|
35 |
|
---|
36 | font-size: 20px;
|
---|
37 |
|
---|
38 | }
|
---|
39 |
|
---|
40 | </style>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.