mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-11 19:03:51 +02:00
20 lines
445 B
JavaScript
20 lines
445 B
JavaScript
// Copyright(c) 2019-2025 pypy, Natsumi and individual contributors.
|
|
// All rights reserved.
|
|
//
|
|
// This work is licensed under the terms of the MIT license.
|
|
// For a copy, see <https://opensource.org/licenses/MIT>.
|
|
|
|
import { createApp } from 'vue';
|
|
|
|
import { i18n } from '../plugin/i18n';
|
|
import { initPlugins } from '../plugin';
|
|
|
|
import Vr from './Vr.vue';
|
|
|
|
await initPlugins(true);
|
|
|
|
const vr = createApp(Vr);
|
|
vr.use(i18n);
|
|
|
|
vr.mount('#root');
|