📅  最后修改于: 2022-03-11 15:02:51.092000             🧑  作者: Mango
import Router from 'next/router'
componentDidMount(){
const {pathname} = Router
if(pathname == '/' ){
Router.push('/hello-nextjs')
}
}