WIP: Switch Main/Welcome component

This commit is contained in:
kPherox
2019-04-27 04:28:19 +09:00
parent 69e5fb3f1b
commit 4094a32ab2
3 changed files with 32 additions and 2 deletions

20
src/components/Main.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<div id="main">
<!-- 仮置き -->
<p>Main View</p>
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'
@Component({
components: {
}
})
export default class Main extends Vue {
}
</script>
<style lang="postcss">
</style>