Merge branch 'develop' into feat-1714

This commit is contained in:
かっこかり
2024-07-25 17:42:47 +09:00
committed by GitHub
23 changed files with 212 additions and 92 deletions

View File

@@ -6,9 +6,12 @@
import { createApp, defineAsyncComponent } from 'vue';
import { common } from './common.js';
import type { CommonBootOptions } from './common.js';
import { emojiPicker } from '@/scripts/emoji-picker.js';
export async function subBoot(options?: Partial<CommonBootOptions>) {
const { isClientUpdated } = await common(() => createApp(
defineAsyncComponent(() => import('@/ui/minimum.vue')),
), options);
emojiPicker.init();
}