首页 > 其他 > 详细

Vue使用NProgress

时间:2021-03-02 10:31:22      阅读:31      评论:0      收藏:0      [点我收藏+]

NProgress是页面跳转是出现在浏览器顶部的进度条

官网:http://ricostacruz.com/nprogress/

github:https://github.com/rstacruz/nprogress

 

 

安装 $ npm install --save nprogress

或者 $ yarn add nprogress

用法

NProgress.start() 显示进度条

NProgress.done() 隐藏进度条

使用

//导入 import NProgress from ‘nprogress‘

import ‘nprogress/nprogress.css‘

 

router.beforeEach((to, from, next) => { NProgress.start() next() }) router.afterEach(() => { NProgress.done() })

 

在App.vue中的style中增加: #nprogress .bar { background: red !important; //自定义颜色 }

Vue使用NProgress

原文:https://www.cnblogs.com/cnaifhc/p/14466692.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!