2023-07-27 14:31:52 +09:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-05-15 19:08:46 +09:00
|
|
|
import { computed, createApp, watch, markRaw, version as vueVersion, defineAsyncComponent } from 'vue';
|
2023-09-19 16:37:43 +09:00
|
|
|
import { common } from './common.js';
|
2023-05-15 19:08:46 +09:00
|
|
|
|
|
|
|
export async function subBoot() {
|
|
|
|
const { isClientUpdated } = await common(() => createApp(
|
|
|
|
defineAsyncComponent(() => import('@/ui/minimum.vue')),
|
|
|
|
));
|
|
|
|
}
|