16 lines
432 B
TypeScript
16 lines
432 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { createApp, defineAsyncComponent } from 'vue';
|
|
import { common } from './common.js';
|
|
import { emojiPicker } from '@/utility/emoji-picker.js';
|
|
import UiMinimum from '@/ui/minimum.vue';
|
|
|
|
export async function subBoot() {
|
|
const { isClientUpdated } = await common(async () => createApp(UiMinimum));
|
|
|
|
emojiPicker.init();
|
|
}
|