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