📜  nextjs 中的 history.push - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:14.403000             🧑  作者: Mango

代码示例2
import { withRouter } from 'next/router'

class About extends React.Component {
  // your Component implementation
  // retrieve them like this
  // this.props.router.query.name
}

export default withRouter(About)