美文网首页
vue-router: history

vue-router: history

作者: 饥人谷_米弥轮 | 来源:发表于2017-08-28 03:04 被阅读25次
前端路由模式有两种 一种是 hash 模式,使用 # 导航。另一种是 Html5HistoryAPI 模式,不使用 #。
  • 你开启了 history 就是使用 Html5HistoryAPI 模式,使用这个模式不会添加 #

     export default new Router({
       mode: 'history',
       routes: [
         {
           path: '/',
           // name: 'home',
           component: home
         }
       ]
     })
    
  • vue-router默认为hash模式

    • 使用hash模式下a标签href里添加#,如

       <a href="#/">home</a>
      
    • 如果不添加会造成下图效果并且无法加载页面


      image.png

相关文章

网友评论

      本文标题:vue-router: history

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