You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
588 B

2 years ago
  1. <template>
  2. <div class="done-booking-details">
  3. <h3 class="t18 tw-mb-[15px]">{{$t('Booking Details')}}</h3>
  4. <DoneBookingInfoItem :info="info" :orderStatus="orderStatus" :totalPrice="totalPrice"></DoneBookingInfoItem>
  5. </div>
  6. </template>
  7. <script>
  8. import DoneBookingInfoItem from "@/components/service/DoneBookingInfoItem";
  9. export default {
  10. components: {
  11. DoneBookingInfoItem,
  12. },
  13. props: {
  14. info: {
  15. type: Object,
  16. },
  17. orderStatus: {
  18. type: Object
  19. },
  20. totalPrice: {
  21. type: Number
  22. },
  23. },
  24. };
  25. </script>
  26. <style lang="scss" scoped>
  27. </style>