小村上空升起袅袅炊烟,好像一个身穿白纱的少女在翩翩起舞,在夕阳的照耀下婀娜多姿。
本文实例为大家分享了Vue使用NProgress进度条的具体代码,供大家参考,具体内容如下
1、安装
npm i -S nprogress
2、在router.js中使用
import Vue from 'vue' import Router from 'vue-router' import NProgress from 'nprogress' import 'nprogress/nprogress.css' Vue.use(Router) const router = new Router({ mode: 'history', routes: [ ] }) router.beforeEach((to, from, next) => { NProgress.start() /// code }) router.afterEach(() => { NProgress.done() })
3、nprogress的z-index
假如你的header比nprogress的高,可能看不见进度条,可以采用这个办法实施,其中数字比header高就行,或者,你改header的z-index
#nprogress { .bar { z-index: 15031; } .spinner { z-index: 15031; } }
4、nprogress修改颜色
#nprogress .bar { background: red !important; //颜色可修改 }
以上就是Vue如何使用NProgress进度条的方法。不喜欢的就扔掉,扔不掉的就还是喜欢。更多关于Vue如何使用NProgress进度条的方法请关注haodaima.com其它相关文章!