Nprogress-进度条

引入 nprogress

yarn add nprogress
import NProgress from 'nprogress'
import 'nprogress/nprogress.css' //这个样式必须引入

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

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

修改颜色

#nprogress .bar {
      background: red !important; //自定义颜色
    }

 

posted on 2020-08-27 14:43  秃了头也不退休  阅读(501)  评论(0编辑  收藏  举报

导航