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