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')),
|
||
|
));
|
||
|
}
|