# iView
iView 一套基于 Vue.js 的高质量 UI 组件库
main.js
import iView from 'iview';
import 'iview/dist/styles/iview.css';
Vue.use(iView);
iView.LoadingBar.config({
color: '#F90',
failedColor: '#f0ad4e',
height: 2
});
router.beforeEach((to, from, next) => {
iView.LoadingBar.start();
next();
});
router.afterEach((to,from,next) => {
window.scrollTo(0,0);
iView.LoadingBar.finish();
});
