您好,登錄后才能下訂單哦!
本文實例為大家分享了vue使用nprogress進度條展示的具體代碼,供大家參考,具體內(nèi)容如下
安裝
npm i nprogress -S
使用
在main.js中
import NProgress from 'nprogress' import 'nprogress/nprogress.css' //使用鉤子函數(shù)對路由進行權限跳轉(zhuǎn) router.beforeEach((to, from, next) => { const role = localStorage.getItem('ms_username'); if(!role && to.path !== '/login'){ next('/login'); }else if(to.meta.permission){ NProgress.start(); // 如果是管理員權限則可進入,這里只是簡單的模擬管理員權限而已 role === 'admin' ? next() : next('/403'); }else{ // 簡單的判斷IE10及以下不進入富文本編輯器,該組件不兼容 if(navigator.userAgent.indexOf('MSIE') > -1 && to.path === '/editor'){ Vue.prototype.$alert('vue-quill-editor組件不兼容IE10及以下瀏覽器,請使用更高版本的瀏覽器查看', '瀏覽器不兼容通知', { confirmButtonText: '確定' }); }else{ NProgress.start(); next(); } } }) router.afterEach(transition => { NProgress.done(); });
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。