2020-05-04 04:31:12 +00:00
|
|
|
<template>
|
2020-09-12 14:29:41 +00:00
|
|
|
<div id="app">
|
2020-05-18 18:10:34 +00:00
|
|
|
<Header />
|
|
|
|
<Body />
|
2020-09-12 14:29:41 +00:00
|
|
|
</div>
|
2020-05-04 04:31:12 +00:00
|
|
|
</template>
|
2020-05-17 18:22:03 +00:00
|
|
|
|
2020-09-08 09:53:34 +00:00
|
|
|
<script lang="ts">
|
2020-06-20 15:10:11 +00:00
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2020-05-18 18:10:34 +00:00
|
|
|
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-09-12 14:29:41 +00:00
|
|
|
components: { 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-09-12 14:29:41 +00:00
|
|
|
<style scoped>
|
|
|
|
#app {
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
</style>
|