egirlskey/src/client/pages/index.vue

32 lines
502 B
Vue
Raw Normal View History

2018-02-10 05:56:33 +00:00
<template>
2020-02-01 00:12:04 +00:00
<component :is="$store.getters.isSignedIn ? 'home' : 'welcome'" :show-title="showTitle"></component>
2018-02-10 05:56:33 +00:00
</template>
<script lang="ts">
import Vue from 'vue';
import Home from './index.home.vue';
2018-02-10 05:56:33 +00:00
export default Vue.extend({
2020-02-01 00:00:22 +00:00
name: 'index',
2018-02-10 05:56:33 +00:00
components: {
2018-02-20 16:39:51 +00:00
Home,
Welcome: () => import('./index.welcome.vue').then(m => m.default),
2020-02-01 00:12:04 +00:00
},
data() {
return {
showTitle: true,
}
},
activated() {
this.showTitle = true;
},
deactivated() {
this.showTitle = false;
2018-02-10 05:56:33 +00:00
}
});
</script>