0
0
Fork 0

Tell the control system if it's preview/dev mode.

This commit is contained in:
Tyler-A 2020-07-30 21:48:20 -06:00
parent 2206a46453
commit 6d3164f5be
3 changed files with 25 additions and 10 deletions

View file

@ -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
},