wip
This commit is contained in:
17
src/web/app/desktop/views/pages/index.vue
Normal file
17
src/web/app/desktop/views/pages/index.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<component v-bind:is="os.isSignedIn ? 'home' : 'welcome'"></component>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import Vue from 'vue';
|
||||
import HomeView from './home.vue';
|
||||
import WelcomeView from './welcome.vue';
|
||||
|
||||
export default Vue.extend({
|
||||
props: ['os'],
|
||||
components: {
|
||||
home: HomeView,
|
||||
welcome: WelcomeView
|
||||
}
|
||||
});
|
||||
</script>
|
Reference in New Issue
Block a user