2020-05-04 04:31:12 +00:00
|
|
|
<template>
|
2020-05-18 18:10:34 +00:00
|
|
|
<Container>
|
|
|
|
<Header />
|
|
|
|
<Body />
|
|
|
|
</Container>
|
2020-05-04 04:31:12 +00:00
|
|
|
</template>
|
2020-05-17 18:22:03 +00:00
|
|
|
|
2020-06-20 15:10:11 +00:00
|
|
|
<script lang='ts'>
|
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2020-05-18 18:10:34 +00:00
|
|
|
import Container from '@/components/layout/Container.vue';
|
|
|
|
import Header from '@/components/layout/Header.vue';
|
|
|
|
import Body from '@/components/layout/Body.vue';
|
2020-05-04 04:31:12 +00:00
|
|
|
|
2020-06-20 15:10:11 +00:00
|
|
|
@Component({
|
2020-05-17 21:41:38 +00:00
|
|
|
components: { Container, Header, Body },
|
2020-06-20 15:10:11 +00:00
|
|
|
})
|
|
|
|
export default class App extends Vue {}
|
2020-05-06 19:24:12 +00:00
|
|
|
</script>
|
2020-05-06 17:38:52 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
/* Global styles - populating to child elementes */
|
|
|
|
.card-header {
|
2020-05-18 16:19:45 +00:00
|
|
|
font-size: 1.3em;
|
2020-05-06 17:38:52 +00:00
|
|
|
}
|
2020-05-10 08:27:57 +00:00
|
|
|
.card-body {
|
2020-05-18 16:19:45 +00:00
|
|
|
overflow: auto;
|
2020-05-10 08:27:57 +00:00
|
|
|
}
|
2020-05-06 17:38:52 +00:00
|
|
|
</style>
|