- temp combine table+chart; - add estimated time by: filament, slicer - format control buttons gcode files: - add meta data
25 lines
636 B
Vue
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> |