style: sort imports (#746)

This commit is contained in:
Stephen Zhou
2024-05-11 14:20:56 +08:00
committed by GitHub
parent 2cea2dfaf9
commit 6cc3b4de9f
69 changed files with 275 additions and 178 deletions

View File

@@ -1,5 +1,10 @@
<script setup lang="ts">
import { onKeyStroke } from '@vueuse/core'
import { useApiClient } from '~/composables/api'
import { useBewlyImage } from '~/composables/useImage'
import { findLeafActiveElement } from '~/utils/element'
import type { HistoryItem, SuggestionItem, SuggestionResponse } from './searchHistoryProvider'
import {
addSearchHistory,
@@ -7,9 +12,6 @@ import {
getSearchHistory,
removeSearchHistory,
} from './searchHistoryProvider'
import { useApiClient } from '~/composables/api'
import { findLeafActiveElement } from '~/utils/element'
import { useBewlyImage } from '~/composables/useImage'
defineProps<{
darkenOnFocus?: boolean