react-router v6
1、重定向redirect
https://stackoverflow.com/questions/69868956/how-can-i-redirect-in-react-router-v6
2、监听location变化
useEffect(() => {
console.log(location.pathname);
}, [location.pathname]);
3、useHistory =>useNavigate
const navigate = useNavigate();
navigate(pathname)