blob: 5d11fc54231f1f1421b71deb37ab41e68db988a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<template>
<component :is="$store.getters.isSignedIn ? 'home' : 'welcome'"></component>
</template>
<script lang="ts">
import Vue from 'vue';
import Home from './home.vue';
import Welcome from './welcome.vue';
export default Vue.extend({
components: {
Home,
Welcome
}
});
</script>
|