17 lines
435 B
TypeScript
17 lines
435 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 '@/scripts/emoji-picker.js';
|
|
|
|
export async function subBoot() {
|
|
const { isClientUpdated } = await common(() => createApp(
|
|
defineAsyncComponent(() => import('@/ui/minimum.vue')),
|
|
));
|
|
|
|
emojiPicker.init();
|
|
}
|