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

@@ -36,17 +36,16 @@
</template>
<script setup>
import { CopyDocument, Download, RefreshLeft, RefreshRight, ZoomIn, ZoomOut } from '@element-plus/icons-vue';
import { nextTick, ref, watch } from 'vue';
import { ElMessage } from 'element-plus';
import { Download, CopyDocument, ZoomIn, ZoomOut, RefreshRight, RefreshLeft } from '@element-plus/icons-vue';
import { storeToRefs } from 'pinia';
import Noty from 'noty';
import { storeToRefs } from 'pinia';
import { escapeTag, extractFileId } from '../shared/utils';
import { useGalleryStore } from '../stores';
import { ref, nextTick, watch } from 'vue';
import { getNextDialogIndex } from '../shared/utils/base/ui';
import { useGalleryStore } from '../stores';
const galleryStore = useGalleryStore();
const { fullscreenImageDialog } = storeToRefs(galleryStore);