您好,登錄后才能下訂單哦!
小編這次要給大家分享的是vue+router路由跳轉不起作用怎么辦,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
如下所示:
Vue.use(Router) export default new Router({ mode:'history', routes: [ { path: '/', component: Login }, { path: '/login', component: Login }, { path: '/register',component: Register}, {path: '/*', component: NotFound}, ] })
記得要寫上 mode:'history', 原因如下
補充知識:vue-router配置后地址欄輸入跳轉不成功問題
在起服務的js中增加 connect-history-api-fallback
const history = require('connect-history-api-fallback'); // 在靜態頁面之前,這一句:app.use('/static', express.static(__dirname + '/public'))之前設置history const historyConfig = { index: '/index.html' }; app.use(history(historyConfig));
看完這篇關于vue+router路由跳轉不起作用怎么辦的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。