vue中去掉url地址栏中的#符号

要去掉vue中访问地址中的#符号可以在路由器中设置路由模式为history:

export default new Router({
  mode:'history',
  routes: [
    {
      path: '/',
      name: 'Home',
      component: Home
    },
	{
      path: '/news',
      name: 'News',
      component: News
    },
	{
      path: '/goods',
      name: 'Goods',
      component: Goods
    },
	{
      path: '/detail/:id',
      name: 'Detail',
      component: Detail
    }
  ]
})

  效果如下:

 

posted on 2018-05-29 13:56  流星飞雨  阅读(8945)  评论(0编辑  收藏  举报

导航