vue.js的路由地址会以#号分隔,去掉

换种模式
const router = new VueRouter({
  mode: 'history',
  routes: [...]
})

1.开启html history模式
2.rewrite url

// nginx例如

location / {
      
                if (!-e $request_filename) {
                        rewrite  ^(.*)$  /index.html?s=$1  last;
                        break;
                }
        }

你可能感兴趣的:(vue.js的路由地址会以#号分隔,去掉)