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

<template>
<div class="done-booking-details">
<h3 class="t18 tw-mb-[15px]">{{$t('Booking Details')}}</h3>
<DoneBookingInfoItem :info="info" :orderStatus="orderStatus" :totalPrice="totalPrice"></DoneBookingInfoItem>
</div>
</template>
<script>
import DoneBookingInfoItem from "@/components/service/DoneBookingInfoItem";
export default {
components: {
DoneBookingInfoItem,
},
props: {
info: {
type: Object,
},
orderStatus: {
type: Object
},
totalPrice: {
type: Number
},
},
};
</script>
<style lang="scss" scoped>
</style>