Last change
on this file 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:
389 bytes
|
Rev | Line | |
---|
[f9ef3e8] | 1 | <script>
|
---|
| 2 |
|
---|
| 3 |
|
---|
| 4 | export default {
|
---|
| 5 |
|
---|
| 6 | data(){
|
---|
| 7 | return {
|
---|
| 8 |
|
---|
| 9 | reservation:{
|
---|
| 10 | id: "res_id",
|
---|
| 11 | time: "time_of_reservation",
|
---|
| 12 | }
|
---|
| 13 |
|
---|
| 14 | }
|
---|
| 15 | },
|
---|
| 16 | props:[]
|
---|
| 17 |
|
---|
| 18 |
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 |
|
---|
| 22 |
|
---|
| 23 | </script>
|
---|
| 24 |
|
---|
| 25 | <template>
|
---|
| 26 |
|
---|
| 27 | <div id="container" class="border my-3 p-2">
|
---|
| 28 | <h3>{{reservation.id}}</h3>
|
---|
| 29 | <h5>{{reservation.time}}</h5>
|
---|
| 30 |
|
---|
| 31 | </div>
|
---|
| 32 | </template>
|
---|
| 33 |
|
---|
| 34 | <style scoped>
|
---|
| 35 |
|
---|
| 36 | #container{
|
---|
| 37 |
|
---|
| 38 | height: 10vh;
|
---|
| 39 |
|
---|
| 40 |
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 |
|
---|
| 44 | </style>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.