Beginning of new layout code.

Really basic 5 component setup.
This commit is contained in:
Pete Richards
2018-08-07 14:59:04 -07:00
parent 0d53898af9
commit 279e0bf29d
12 changed files with 137 additions and 14 deletions

View File

@ -0,0 +1,39 @@
<template>
<div class="Layout">
<mct-tree ref="tree"></mct-tree>
<mct-main ref="main"></mct-main>
<mct-inspector ref="inspector"></mct-inspector>
<mct-status ref="status"></mct-status>
</div>
</template>
<style lang="scss">
.Layout {
height: 100%;
width: 100%;
overflow: hidden;
position: absolute
}
</style>
<script>
import MctTree from './MctTree.vue'
import MctMain from './MctMain.vue'
import MctInspector from './MctInspector.vue'
import MctStatus from './MctStatus.vue'
export default {
data () {
return {
msg: 'Hello world!'
}
},
components: {
MctTree,
MctMain,
MctInspector,
MctStatus
}
}
</script>