Vue router on page refresh gets 404

后端 未结 4 1328
慢半拍i
慢半拍i 2021-01-28 02:49

I am using Vue router with history mode. On button click on the current page I route it to next page. On second page when i reload i get a 404. Is there a way to handle this in

4条回答
  •  闹比i
    闹比i (楼主)
    2021-01-28 03:37

    you can use hash mode inested of history mode to resolve the problem on your router

    let router = new Router({
        mode: "hash",
      routes: [
        {
        //and the urls with path on here ...

提交回复
热议问题