0
0
Fork 0

Begin work on the main view

This commit is contained in:
Tyler-A 2020-07-29 22:50:45 -06:00
parent f1ac6ac40e
commit ec2cc38e9e

View file

@ -0,0 +1,29 @@
<template>
<div id="main_screen">
<Control
@export-attempt="handle_export"
/>
</div>
</template>
<script>
import ControlCard from "./ControlBar.vue"
export default {
name: ``,
components: {
Control: ControlCard
},
data() { return {};},
computed: {},
methods: {
handle_export() {
alert("Potato")
}
}
}
</script>
<style>
</style>