使用打字稿时出错并在 SVG 路径上对“ref”做出反应

时间:2021-07-17 10:51:44

标签: typescript next.js

我在尝试使用 react useRef 引用 SVG 路径时遇到 Visual Studio 错误

import { useRef } from 'react';

...

const path = useRef<SVGSVGElement | null>()

...

<path ref={path} ... /> 

带有以下消息的 ref 错误 Type 'MutableRefObject' 不能分配给类型 'LegacyRef |未定义'。

有什么想法吗?提前致谢

0 个答案:

没有答案