码迷,mamicode.com
首页 > 其他好文 > 详细

Vue知识点-改变路由的哈希模式(去掉路由中的#)

时间:2020-01-01 18:29:17      阅读:421      评论:0      收藏:0      [点我收藏+]

标签:path   new   bsp   file   知识点   cart   pat   oms   efault   

1、改变路由的哈希模式(在路由中会出现#):
  在src/router/index.js中

    创建路由对象:
      const routes = [

{path:"",redirect:"/home"},

{path:"/home",component:Home},

{path:"/cart",comsponent:Cart},

{path:"/profile",component:Profile},

{path:"/category",component:Cart},

]

 

const router  = new Vuerouter({

  routes,

  mode:‘history‘

})

export default router

 

将mode改为"history"

Vue知识点-改变路由的哈希模式(去掉路由中的#)

标签:path   new   bsp   file   知识点   cart   pat   oms   efault   

原文地址:https://www.cnblogs.com/jjbw/p/12129277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!