前端爱码士
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
1 deletions
-
src/components/Icon/src/IconPicker.vue
|
|
|
@ -124,7 +124,16 @@ |
|
|
|
const { prefixCls } = useDesign('icon-picker'); |
|
|
|
|
|
|
|
const debounceHandleSearchChange = useDebounceFn(handleSearchChange, 100); |
|
|
|
const { clipboardRef, isSuccessRef } = useCopyToClipboard(props.value); |
|
|
|
|
|
|
|
let clipboardRef; |
|
|
|
let isSuccessRef; |
|
|
|
|
|
|
|
if (props.copy) { |
|
|
|
const clipboard = useCopyToClipboard(props.value); |
|
|
|
clipboardRef = clipboard?.clipboardRef; |
|
|
|
isSuccessRef = clipboard?.isSuccessRef; |
|
|
|
} |
|
|
|
|
|
|
|
const { createMessage } = useMessage(); |
|
|
|
|
|
|
|
const { getPaginationList, getTotal, setCurrentPage } = usePagination( |
|
|
|
|