HLJ 发布于
2018-08-09 13:50:06

去掉用Webpack+vue开发项目地址栏中#符号的方法

开发环境地址栏中去掉#符号的方法
在src/router/index.js添加 mode:'history' 代码即可
import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'

Vue.use(Router)

export default new Router({
  mode:'history',
  routes: [
    {
      path: '/HelloWorld',
      name: 'HelloWorld',
      component: HelloWorld
    }
  ]
})
当前文章内容为原创转载请注明出处:http://www.good1230.com/detail/2018-08-09/46.html
最后生成于 2023-06-18 18:29:08
此内容有帮助 ?
0