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,21 @@
<template>
<div class="MCT_Main">I'm the main region</div>
</template>
<style lang="scss">
.MCT_Main {
position: absolute;
right: 100px;
top: 0px;
bottom: 20px;
left: 100px;
background: green;
}
</style>
<script>
export default {
}
</script>