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

@@ -117,8 +117,8 @@ import { ref, computed, onMounted, watch, } from 'vue';
import { mapState, mapActions, } from 'pinia';
import LoadingStore from '@/stores/loading.js';
import { useModalStore } from '@/stores/modal.js';
import useAcctMgmtStore from '@/stores/acctMgmt.ts';
import piniaLoginStore from '@/stores/login.ts';
import useAcctMgmtStore from '@/stores/acctMgmt';
import piniaLoginStore from '@/stores/login';
import SearchBar from '../../../components/AccountMenu/SearchBar.vue';
import i18next from '@/i18n/i18n.js';
import { useToast } from 'vue-toast-notification';

View File

@@ -25,7 +25,7 @@
<script>
import { onBeforeMount, computed, ref } from 'vue';
import i18next from '@/i18n/i18n.js';
import useAcctMgmtStore from '@/stores/acctMgmt.ts';
import useAcctMgmtStore from '@/stores/acctMgmt';
import ModalHeader from './ModalHeader.vue';
import Badge from '../../components/Badge.vue';

View File

@@ -118,7 +118,7 @@
import { onMounted, computed, ref, } from 'vue';
import i18next from '@/i18n/i18n.js';
import LoginStore from '@/stores/login';
import useAcctMgmtStore from '@/stores/acctMgmt.ts';
import useAcctMgmtStore from '@/stores/acctMgmt';
import Badge from '../../components/Badge.vue';
import LoadingStore from '@/stores/loading.js';
import Button from '@/components/Button.vue';