码迷,mamicode.com
首页 > 其他好文 > 详细

Vue使用NProgress

时间:2019-12-05 13:09:23      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:rom   gre   alt   save   each   src   ogr   before   npm   

NProgress是页面跳转是出现在浏览器顶部的进度条
官网:http://ricostacruz.com/nprogress/
github:https://github.com/rstacruz/nprogress

如下图所示,绿色的进度条就是NProgress实现的效果

技术图片

 

 

 

1、安装

$ npm install --save nprogress 或者
$ yarn add nprogress

//用法
NProgress.start();
NProgress.done();

 

2、使用

router.js

//导入
import NProgress from ‘nprogress‘
import ‘nprogress/nprogress.css‘

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

router.afterEach(() => {
  NProgress.done()
})

 

颜色修改:https://blog.csdn.net/wn1245343496/article/details/82082152

 

Vue使用NProgress

标签:rom   gre   alt   save   each   src   ogr   before   npm   

原文地址:https://www.cnblogs.com/mmzuo-798/p/11988254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!