How to remove hashbang from url?

后端 未结 11 607
生来不讨喜
生来不讨喜 2020-11-30 17:04

How to remove hashbang #! from url?

I found option to disable hashbang in vue router documentation ( http://vuejs.github.io/vue-router/en/options.html )

11条回答
  •  醉梦人生
    2020-11-30 17:43

    You should add mode history to your router like the below

    export default new Router({
      mode: 'history',
      routes: [
        {
         ...
        }
      ]
    }) 
    

提交回复
热议问题