Tell the control system if it's preview/dev mode.
This commit is contained in:
parent
2206a46453
commit
6d3164f5be
3 changed files with 25 additions and 10 deletions
|
|
@ -1,6 +1,8 @@
|
|||
<template>
|
||||
<div id="main_screen">
|
||||
<Control
|
||||
:dev="dev_mode"
|
||||
:preview="preview_mode"
|
||||
@export-attempt="handle_export"
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -11,6 +13,10 @@ import ControlCard from "./ControlBar.vue"
|
|||
|
||||
export default {
|
||||
name: ``,
|
||||
props: {
|
||||
preview_mode: Boolean,
|
||||
dev_mode: Boolean,
|
||||
},
|
||||
components: {
|
||||
Control: ControlCard
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue