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
|
|
|
|
2020-07-26 08:48:07 +00:00
|
|
|
<style scoped></style>
|