PluginProbe
Bookit — Booking & Appointment Calendar / 2.6.0.5
Bookit — Booking & Appointment Calendar v2.6.0.5
2.6.0.5 2.6.0.4 2.6.0.3 2.6.0.2 2.6.0.1 2.6.0 trunk 1.2 1.2.2 1.2.3 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 All 62 releases
bookit / assets / src / frontend / @views / default / index.js

index.js in Bookit — Booking & Appointment Calendar 2.6.0.5, at assets/src/frontend/@views/default/index.js

23 lines 668 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }