“history.push em NextJs” Respostas de código

history.push em NextJs

import { useRouter } from 'next/router'

export default function Page() {
  const router = useRouter()

  return (
    <button type="button" onClick={() => router.push('/about')}>
      Click me
    </button>
  )
}
SabDev

Próximo roteador Push State

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)
Grumpy Goldfinch

Respostas semelhantes a “history.push em NextJs”

Perguntas semelhantes a “history.push em NextJs”

Procure respostas de código populares por idioma

Procurar outros idiomas de código