mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-14 06:38:24 +09:00
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
import { computed, createApp, watch, markRaw, version as vueVersion, defineAsyncComponent } from 'vue';
|
|
import { common } from './common';
|
|
|
|
export async function subBoot() {
|
|
const { isClientUpdated } = await common(() => createApp(
|
|
defineAsyncComponent(() => import('@/ui/minimum.vue')),
|
|
));
|
|
}
|