美文网首页
react中history的使用

react中history的使用

作者: sweetBoy_9126 | 来源:发表于2020-06-12 11:37 被阅读0次
    import { createBrowserHistory, createHashHistory } from 'history';
    const history = createBrowserHistory() // history模式
    const history = createHashHistory() // hash模式
    history.push('/')
    
    interface HistoryProp {
      history?: History & { push: (str: string) => void};
    }
    (history as HistoryProp).push('/')
    

    相关文章

      网友评论

          本文标题:react中history的使用

          本文链接:https://www.haomeiwen.com/subject/exsgtktx.html