Begin work on the main view
This commit is contained in:
parent
f1ac6ac40e
commit
ec2cc38e9e
1 changed files with 29 additions and 0 deletions
29
src/components/MainView.vue
Normal file
29
src/components/MainView.vue
Normal 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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue