阻止Vuejs应用程序重写URL

时间:2018-06-04 09:09:51

标签: java vue.js jboss single-page-application

我有一个Java Web应用程序,它运行在JBoss服务器上: http://192.168.0.115:8080/war-name-goes-here/ 。我尝试使用Vuejs将.jsp页面转换为 SPA ,但我注意到当我运行Vuejs应用程序时,它会覆盖URL并转换为: {{ 3}} 即可。这是在Java后端运行的Vuejs应用程序的正常行为,还是应该更改服务器的任何配置?日Thnx!

1 个答案:

答案 0 :(得分:0)

默认情况下,应用的基本网址为'/'

因此,为路由器构造函数选项添加base选项

const router = new VueRouter({
  base: "/war-name-goes-here/",
  routes
})

参考 - Router construction options