2019-09-02 07:29:49 +00:00
|
|
|
<template>
|
2019-09-04 12:56:02 +00:00
|
|
|
<section class="home"></section>
|
2019-09-02 07:29:49 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue } from "vue-property-decorator";
|
|
|
|
|
|
|
|
@Component({
|
2019-09-02 16:02:40 +00:00
|
|
|
components: {}
|
2019-09-02 07:29:49 +00:00
|
|
|
})
|
|
|
|
export default class Home extends Vue {}
|
|
|
|
</script>
|