我有两个这样的组件。
<ComponentA />
<ComponentB />
组件A将是水平可滚动的,但我想在组件b中显示其滚动条
<ComponentA >
some content over here which is wide enough to get horizontal scroll
</ComponentA>
<ComponentB>
some content
//scrollbar of ComponentA
more content
</ComponentB>
希望我把问题说清楚了:)
我想我可以使用useRef,但不知道在这种情况下如何使用
我是新手,希望我能理解你的问题,我会尽力的。使用overflow-x/overflow-y: scroll;
所以你可以很容易地在组件a中得到一个滚动条,但它总是可见的。