summaryrefslogtreecommitdiff
path: root/packages/frontend/src/boot/sub-boot.ts
blob: c2664f6c1d3e0e2ea9fa8e47b0c4392a5533a3a2 (plain)
1
2
3
4
5
6
7
8
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')),
	));
}