| 1 |
import Filters from '@components/default/sidebar-filters' |
| 2 |
import MonthlyCalendar from '@components/default/monthly-calendar' |
| 3 |
import BookingForm from '@components/default/sections/booking-form' |
| 4 |
|
| 5 |
export default { |
| 6 |
template: ` |
| 7 |
<div class="default-theme"> |
| 8 |
<sidebar-filters></sidebar-filters> |
| 9 |
<monthly-calendar></monthly-calendar> |
| 10 |
<bookit-booking-form v-if="showBookingForm"></bookit-booking-form> |
| 11 |
</div> |
| 12 |
`, |
| 13 |
components: { |
| 14 |
'sidebar-filters': Filters, |
| 15 |
'monthly-calendar': MonthlyCalendar, |
| 16 |
'bookit-booking-form': BookingForm |
| 17 |
}, |
| 18 |
computed: { |
| 19 |
showBookingForm () { |
| 20 |
return this.$store.getters.getShowBookingForm; |
| 21 |
} |
| 22 |
} |
| 23 |
} |