yumechi-no-kuni/src/client/pages/index.vue

18 lines
335 B
Vue
Raw Normal View History

2018-02-09 23:56:33 -06:00
<template>
2018-05-26 23:49:09 -05:00
<component :is="$store.getters.isSignedIn ? 'home' : 'welcome'"></component>
2018-02-09 23:56:33 -06:00
</template>
<script lang="ts">
import Vue from 'vue';
import Home from './index.home.vue';
2018-02-09 23:56:33 -06:00
export default Vue.extend({
2020-01-31 18:00:22 -06:00
name: 'index',
2018-02-09 23:56:33 -06:00
components: {
2018-02-20 10:39:51 -06:00
Home,
Welcome: () => import('./index.welcome.vue').then(m => m.default),
2018-02-09 23:56:33 -06:00
}
});
</script>