此链接很好用
import { HashLink as Link } from 'react-router-hash-link';
<Link to={{pathname: '/features', hash: 'some-feature'}}>
<h2 id="some-feature">Some feature</h2>
</Link>
但是当我在新的浏览器窗口中输入网址时:
/features#some-feature
浏览器不会滚动到该元素。
因此,滚动到链接单击上的元素非常有效。我需要添加什么逻辑才能在页面加载时滚动到元素?