mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 15:26:43 -06:00
8 lines
298 B
TypeScript
8 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')),
|
|
));
|
|
}
|