From be9d448ec976d2b89ddcbe5967fb6cac0c1668de Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Sat, 27 Nov 2021 10:04:37 +0800 Subject: [PATCH] fix: tabs moreIcon not work #4928 close #4928 --- components/tabs/src/TabNavList/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/tabs/src/TabNavList/index.tsx b/components/tabs/src/TabNavList/index.tsx index 3ed2321a7..b2b865579 100644 --- a/components/tabs/src/TabNavList/index.tsx +++ b/components/tabs/src/TabNavList/index.tsx @@ -28,6 +28,8 @@ import classNames from '../../../_util/classNames'; import ResizeObserver from '../../../vc-resize-observer'; import { toPx } from '../../../_util/util'; import useRefs from '../../../_util/hooks/useRefs'; +import pick from 'lodash-es/pick'; + const DEFAULT_SIZE = { width: 0, height: 0, left: 0, top: 0, right: 0 }; const tabNavListProps = () => { return { @@ -528,6 +530,7 @@ export default defineComponent({