chore: add eslint rule sort imports (#6823)

This commit is contained in:
三咲智子
2022-03-25 15:35:56 +08:00
committed by GitHub
parent 6eead7cc2f
commit 184facdb4c
366 changed files with 821 additions and 810 deletions

View File

@ -82,33 +82,33 @@
<script lang="ts">
import {
defineComponent,
computed,
ref,
onMounted,
watch,
nextTick,
defineComponent,
effectScope,
markRaw,
nextTick,
onMounted,
ref,
watch,
} from 'vue'
import { useEventListener, isNumber } from '@vueuse/core'
import { isNumber, useEventListener } from '@vueuse/core'
import { throttle } from 'lodash-unified'
import ElIcon from '@element-plus/components/icon'
import { useLocale, useNamespace, useZIndex } from '@element-plus/hooks'
import { EVENT_CODE } from '@element-plus/constants'
import { isFirefox } from '@element-plus/utils'
import {
Close,
ArrowLeft,
ArrowRight,
ZoomOut,
ZoomIn,
Close,
FullScreen,
RefreshLeft,
RefreshRight,
FullScreen,
ScaleToOriginal,
ZoomIn,
ZoomOut,
} from '@element-plus/icons-vue'
import { imageViewerProps, imageViewerEmits } from './image-viewer'
import { imageViewerEmits, imageViewerProps } from './image-viewer'
import type { CSSProperties } from 'vue'