image icon indicating copy to clipboard operation
image copied to clipboard

Image组件是否可以使用forwardRef定义,目前无法传入ref

Open SimerW opened this issue 4 months ago • 1 comments

import Image from 'rc-image';

export const MyComponent = () { const ref = useRef(null) return <Image src="XXX" ref={ref} }

上述场景中想要传入ref到Image组件内部,绑定在img元素上,但是目前无法实现

SimerW avatar Oct 09 '24 12:10 SimerW