Remove .ts extension from import paths

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 08:50:01 +08:00
parent dfd5706bcf
commit 523515459b
13 changed files with 18 additions and 18 deletions

View File

@@ -34,8 +34,8 @@ import { computed, onMounted, ref, } from 'vue';
import { mapActions, mapState, storeToRefs } from 'pinia';
import i18next from '@/i18n/i18n';
import { useRouter } from 'vue-router';
import LoginStore from '@/stores/login.ts';
import AcctMgmtStore from '@/stores/acctMgmt.ts';
import LoginStore from '@/stores/login';
import AcctMgmtStore from '@/stores/acctMgmt';
import AllMapDataStore from '@/stores/allMapData.js';
import ConformanceStore from '@/stores/conformance.js';
import { leaveFilter, leaveConformance } from '@/module/alertModal.js';

View File

@@ -23,8 +23,8 @@
import { ref, } from 'vue';
import { storeToRefs, } from 'pinia';
import i18next from '@/i18n/i18n';
import loginStore from '@/stores/login.ts';
import useAcctMgmtStore from '@/stores/acctMgmt.ts';
import loginStore from '@/stores/login';
import useAcctMgmtStore from '@/stores/acctMgmt';
import DspLogo from '@/components/icons/DspLogo.vue';
import AllMapDataStore from '@/stores/allMapData.js';
import ConformanceStore from '@/stores/conformance.js';