您好,登錄后才能下訂單哦!
index.js中設(shè)置如下內(nèi)容:
const router = new Router({
? routes: [
? ? {
? ? ? path: '/',
? ? ? name: 'HelloWorld',
? ? ? component: HelloWorld,
? ? ? meta:{requireAuth:true}
? ? },
? ? {
? ? ? path: '/login',
? ? ? name: 'login',
? ? ? component: Login
? ? },
? ? {
? ? ? path: '/index',
? ? ? name: 'index',
? ? ? component: index,
? ? ? meta:{requireAuth:true}
? ? },
? ]
});
router.beforeEach((to, from, next) => {
?//requireAuth對應(yīng)上面每個跳轉(zhuǎn)的 meta:{requireAuth:true},
?//配置上說明訪問該路徑時需要檢測是否登錄狀態(tài)
?if(to.meta.requireAuth) {
? ?//sessionStorage可直接使用,無需引入
? ?//在登錄頁,點擊登錄按鈕后設(shè)置sessionStorage.setItem("key","value")
? ?//通過sessionStorage.getItem("account")獲取,如果有值則是登錄狀態(tài),無值則為未登錄,自動跳轉(zhuǎn)到登錄頁
? ?if(sessionStorage.getItem("account") == null) {??
? ? ? next('/login');? ? ??
? ?}else{? ? ?
? ? ?next();
? ? }
?}
?else{
? ? next();
?}
});
export default router;
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。