egirlskey/packages/frontend/src/boot/sub-boot.ts

14 lines
367 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2023-12-21 02:36:45 +00:00
import { createApp, defineAsyncComponent } from 'vue';
2023-09-19 07:37:43 +00:00
import { common } from './common.js';
export async function subBoot() {
const { isClientUpdated } = await common(() => createApp(
defineAsyncComponent(() => import('@/ui/minimum.vue')),
));
}