Files
VRCX/src/vr/vr.js
2025-10-15 12:24:14 +11:00

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