mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 10:23:09 +02:00
16 lines
278 B
Vue
16 lines
278 B
Vue
<template>
|
|
<component :is="os.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>
|