我正在编写Vue.js应用程序。我不知道为什么它会不断在我输入到浏览器中的每个网址后附加“#”。有人对Vue有类似的问题吗?例如,当我输入“ localhost:8080 / register”时,浏览器将其更改为“ localhost:8080 / register#/”。路由也不正常。有谁知道是什么原因引起的?
答案 0 :(得分:0)
在路由配置中,将mode
设置为历史记录。
mode: "history"
喜欢:
const router = new VueRouter({
mode: "history",
routes: [
// ...
]
})