【vuejs】有關vue的一些小技巧

萌村村花楊小花發表於2018-07-09

1.剛進入頁面時候的預設介面

在路由檔案下面的index.js或者router.js中,新增{path:’/’,redirect:’/join’};

  export default new Router({
    routes:[{
      path:'/'
      redirect:'/join'// 這裡就是首頁展示的檔案
    }]
  })

2.去掉位址列中的 “#”

方法一:在router.js中新增mode:history
export default new Router({
  "mode":"history"
  })

相關文章