所以,我有2个同级组件,第一个是“标题”,第二个是“概述”
<Router>
<div>
<Header />
<Switch>
<Route exact path="/overview" component={overview} />
</Switch>
</div>
</Router>
在标题组件中,我有一个函数,当我单击同一组件中的按钮时会触发
firstFunction(){
console.log("first")
}
在概述组件中,我有一个函数,当我单击“标题”组件中的按钮时,便要触发它。
secondFunction(){
console.log("second")
}
所以我想当我单击“页眉”组件中的按钮以触发“概述”组件功能时,是否有可能?而且我不使用Redux。