溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue+router路由跳轉(zhuǎn)不起作用怎么辦

發(fā)布時(shí)間:2020-07-20 11:16:59 來(lái)源:億速云 閱讀:554 作者:小豬 欄目:開(kāi)發(fā)技術(shù)

小編這次要給大家分享的是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', 原因如下

vue+router路由跳轉(zhuǎn)不起作用怎么辦

補(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ò)的話,可以把它分享出去給更多人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI