整理した
This commit is contained in:
16
src/client/app/mobile/views/pages/index.vue
Normal file
16
src/client/app/mobile/views/pages/index.vue
Normal file
@ -0,0 +1,16 @@
|
||||
<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>
|
Reference in New Issue
Block a user