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.
56 lines
988 B
56 lines
988 B
<template>
|
|
<card class="card-user" style="max-height:100%">
|
|
|
|
<div class="row" >
|
|
<div class="col-8 order-first " >
|
|
<br>
|
|
<calendar-view>
|
|
|
|
</calendar-view>
|
|
</div>
|
|
|
|
<div class="col-4 order-last" >
|
|
<br>
|
|
|
|
<calendar-view-events>
|
|
|
|
</calendar-view-events>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</card>
|
|
</template>
|
|
<script>
|
|
import {mapState, mapGetters, mapActions} from 'vuex'
|
|
import card from '@/components/Card.vue'
|
|
import CalendarView from "./manageservices/calendarview.vue";
|
|
//import CalendarView from "./manageservices/view-service.vue";
|
|
import CalendarViewEvents from "./manageservices/view-events.vue";
|
|
export default {
|
|
components: {
|
|
card,
|
|
CalendarView,
|
|
CalendarViewEvents
|
|
},
|
|
data () {
|
|
return {
|
|
loading: false,
|
|
consoleView: 'off',
|
|
productIndex: 1
|
|
}
|
|
},
|
|
mounted() {
|
|
},
|
|
beforeDestroy () {
|
|
},
|
|
|
|
|
|
created () {
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
</style>
|
|
|
|
|