// home component
class Home extends Component {
render () {
const { homeCharts } = this.props
return (
{/* ... */}
)
}
}
export default connect(state => {
console.log(state) // 这里打印的state可以明确的看到store上对于的数据已经更新
return {
...state.homePage,
random: Math.random()
}
})()