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