📌  相关文章
📜  单击按钮更改路由下一个 js - Javascript 代码示例

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

代码示例1
import Router from 'next/router'

componentDidMount(){
    const {pathname} = Router
    if(pathname == '/' ){
       Router.push('/hello-nextjs')
    }
}