mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-22 16:23:50 +02:00
lint: apply pretty import
This commit is contained in:
@@ -1407,19 +1407,23 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import './vr.scss';
|
||||
import { onMounted, reactive, toRefs, nextTick } from 'vue';
|
||||
import Noty from 'noty';
|
||||
import * as workerTimers from 'worker-timers';
|
||||
import { nextTick, onMounted, reactive, toRefs } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
import MarqueeText from 'vue-marquee-text-component';
|
||||
import VrLocation from './components/VrLocation.vue';
|
||||
import { displayLocation } from '../shared/utils/location';
|
||||
import Noty from 'noty';
|
||||
|
||||
import { escapeTag, escapeTagRecursive } from '../shared/utils/base/string';
|
||||
import { changeHtmlLangAttribute } from '../shared/utils/base/ui';
|
||||
import { displayLocation } from '../shared/utils/location';
|
||||
import { removeFromArray } from '../shared/utils/base/array';
|
||||
import { timeToText } from '../shared/utils/base/format';
|
||||
import { changeHtmlLangAttribute } from '../shared/utils/base/ui';
|
||||
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import VrLocation from './components/VrLocation.vue';
|
||||
|
||||
import * as workerTimers from 'worker-timers';
|
||||
|
||||
import './vr.scss';
|
||||
|
||||
defineOptions({
|
||||
name: 'vr'
|
||||
|
||||
@@ -14,7 +14,8 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, watch, onMounted } from 'vue';
|
||||
import { onMounted, ref, watch } from 'vue';
|
||||
|
||||
import { parseLocation } from '../../shared/utils/location';
|
||||
|
||||
const props = defineProps({
|
||||
|
||||
@@ -5,8 +5,10 @@
|
||||
// For a copy, see <https://opensource.org/licenses/MIT>.
|
||||
|
||||
import { createApp } from 'vue';
|
||||
import { initPlugins } from '../plugin';
|
||||
|
||||
import { i18n } from '../plugin/i18n';
|
||||
import { initPlugins } from '../plugin';
|
||||
|
||||
import Vr from './Vr.vue';
|
||||
|
||||
await initPlugins(true);
|
||||
|
||||
Reference in New Issue
Block a user