作者:拍友2502885255 | 来源:互联网 | 2023-10-12 15:50
12345678910111213const test= (nextState, replace) => { console.info('routerenter', nextState)}exp
1 2 3 4 5 6 7 8 9 10 11 12 13
| const test= (nextState, replace) => {
console.info('routerenter', nextState)
}
export default (store) => (
) |
为何我这样配置的react-router在进入login的时候可以打印但是进入my的时候缺没有打印信息出来。帮忙看下有问题吗?谢谢
刚刚测试下面这种写法是ok的,但是感觉还是没有上面写法舒服,是不支持上面的写法嘛?
1 2 3 4 5 6 7
| export default (store) => (
) |