lint: apply pretty import

This commit is contained in:
pa
2025-10-15 09:08:38 +09:00
committed by Natsumi
parent bed76e0ad8
commit afbb6dfa47
203 changed files with 3502 additions and 1441 deletions

View File

@@ -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'

View File

@@ -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({

View File

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