0044d83801
* wip * wip * wip * wip * Update ja-JP.yml * wip * wip * wip
38 lines
608 B
Vue
38 lines
608 B
Vue
<template>
|
|
<div v-if="meta">
|
|
<XSetup v-if="meta.requireSetup"/>
|
|
<XEntrance v-else/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import XSetup from './welcome.setup.vue';
|
|
import XEntrance from './welcome.entrance.vue';
|
|
import { instanceName } from '@/config';
|
|
import * as os from '@/os';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XSetup,
|
|
XEntrance,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
INFO: {
|
|
title: instanceName,
|
|
icon: null
|
|
},
|
|
meta: null
|
|
}
|
|
},
|
|
|
|
created() {
|
|
os.api('meta', { detail: true }).then(meta => {
|
|
this.meta = meta;
|
|
});
|
|
}
|
|
});
|
|
</script>
|