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.
 
 
 
 
 
 

51 lines
964 B

<template>
<card class="card-user" style="max-height:100%">
<div class="row" >
<div class="col-12 order-first " >
<br>
<dashboard-view>
</dashboard-view>
</div>
</div>
</card>
</template>
<script>
import {mapState, mapGetters, mapActions} from 'vuex'
import card from '@/components/Card.vue'
import DashboardView from "./manageservices/view-dashboard.vue";
//import CalendarView from "./manageservices/view-service.vue";
//import CalendarViewEvents from "./manageservices/view-events.vue";
export default {
components: {
card,
DashboardView
// CalendarViewEvents
},
data () {
return {
hybridshowlog:1,
loading: false,
consoleView: 'off',
productIndex: 1
}
},
mounted() {
this.$root.$on('hybrid_labobject_view', (v) => {
this.hybridshowlog=2
})
},
beforeDestroy () {
},
created () {
}
};
</script>
<style>
</style>