mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 11:03:09 +02: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')),
|
||
|
));
|
||
|
}
|