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

26 lines
1.1 KiB
JavaScript

import AvatarInfo from '../components/AvatarInfo.vue';
import CountdownTimer from '../components/CountdownTimer.vue';
import DataTable from '../components/DataTable.vue';
import DisplayName from '../components/DisplayName.vue';
import InstanceInfo from '../components/InstanceInfo.vue';
import InviteYourself from '../components/InviteYourself.vue';
import LastJoin from '../components/LastJoin.vue';
import Launch from '../components/Launch.vue';
import Location from '../components/Location.vue';
import LocationWorld from '../components/LocationWorld.vue';
import Timer from '../components/Timer.vue';
export function initComponents(app) {
app.component('Location', Location);
app.component('Timer', Timer);
app.component('InstanceInfo', InstanceInfo);
app.component('LastJoin', LastJoin);
app.component('CountdownTimer', CountdownTimer);
app.component('AvatarInfo', AvatarInfo);
app.component('DisplayName', DisplayName);
app.component('InviteYourself', InviteYourself);
app.component('Launch', Launch);
app.component('LocationWorld', LocationWorld);
app.component('DataTable', DataTable);
}