Open MirShi opened 6 years ago
How to save the parameters passed during the routing jump and to apply this parameter when refreshing the page.
you can save the parameters when you jump. just like this: router.push({ pathname: '/home/login', query: { ...params } }) then you can get the query by location
router.push({ pathname: '/home/login', query: { ...params } })
How to save the parameters passed during the routing jump and to apply this parameter when refreshing the page.