Skip to content

Commit

Permalink
continue adjust to moduleResolution:NodeNext
Browse files Browse the repository at this point in the history
  • Loading branch information
zendive committed Feb 6, 2024
1 parent ee4b184 commit d915ec7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/view/panel.header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
</template>

<script setup lang="ts">
import { useCompareStore } from '@/stores/compare.store';
import { useSearchStore } from '@/stores/search.store';
import { useCompareStore } from '@/stores/compare.store.ts';
import { useSearchStore } from '@/stores/search.store.ts';
import PanelLoader from '@/view/panel.loader.vue';
import PanelTimer from '@/view/panel.timer.vue';
import PanelBadge from '@/view/panel.badge.vue';
Expand Down
4 changes: 2 additions & 2 deletions src/view/panel.search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

<script setup lang="ts">
import { computed, onMounted, onUnmounted, ref } from 'vue';
import { useSearchStore } from '@/stores/search.store';
import { isSearchKeyboardEvent } from '@/api/toolkit';
import { useSearchStore } from '@/stores/search.store.ts';
import { isSearchKeyboardEvent } from '@/api/toolkit.ts';
const searchStore = useSearchStore();
const searchEl = ref<HTMLInputElement | null>(null);
Expand Down
4 changes: 2 additions & 2 deletions src/view/panel.timer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</template>

<script lang="ts" setup>
import { SECOND, timeFromNow, timeToString } from '@/api/time';
import { useCompareStore } from '@/stores/compare.store';
import { SECOND, timeFromNow, timeToString } from '@/api/time.ts';
import { useCompareStore } from '@/stores/compare.store.ts';
import { computed, onUnmounted, ref, watch } from 'vue';
const compareStore = useCompareStore();
Expand Down

0 comments on commit d915ec7

Please sign in to comment.