CreatBotMainsail/src/pages/Dashboard.vue
Stefan Dej 69fff8fe0e dashboard:
- temp combine table+chart;
- add estimated time by: filament, slicer
- format control buttons

gcode files:
- add meta data
2020-04-12 03:56:32 +02:00

25 lines
636 B
Vue

<template>
<v-row>
<v-col class="col-sm-12 col-md-7">
<status-panel></status-panel>
<webcam-panel v-if="showDashboardWebcam" class="mt-6"></webcam-panel>
<control-panel class="mt-6"></control-panel>
</v-col>
<v-col class="col-sm-12 col-md-5">
<tools-panel></tools-panel>
<peripherie-panel></peripherie-panel>
</v-col>
</v-row>
</template>
<script>
import { mapGetters } from 'vuex'
export default {
computed: {
...mapGetters([
'showDashboardWebcam'
])
},
}
</script>