yumechi-no-kuni/src/client/pages/index.vue
2020-02-01 09:00:22 +09:00

17 lines
335 B
Vue

<template>
<component :is="$store.getters.isSignedIn ? 'home' : 'welcome'"></component>
</template>
<script lang="ts">
import Vue from 'vue';
import Home from './index.home.vue';
export default Vue.extend({
name: 'index',
components: {
Home,
Welcome: () => import('./index.welcome.vue').then(m => m.default),
}
});
</script>