提交 733afddd 编写于 作者: V vben

perf(nprocess): remove nprocess css

上级 b107b528
...@@ -52,12 +52,6 @@ body { ...@@ -52,12 +52,6 @@ body {
} }
} }
// remove the clear button of a text input control in IE10+
input::-ms-clear,
input::-ms-reveal {
display: none;
}
body { body {
font-family: 'BlinkMacSystemFont,segoe ui,Microsoft YaHei,Arial,sans-serif,Helvetica Neue,Helvetica,Pingfang SC,Hiragino Sans GB,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji'; font-family: 'BlinkMacSystemFont,segoe ui,Microsoft YaHei,Arial,sans-serif,Helvetica Neue,Helvetica,Pingfang SC,Hiragino Sans GB,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji';
font-style: normal; font-style: normal;
......
...@@ -24,3 +24,21 @@ ...@@ -24,3 +24,21 @@
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background: @border-color-dark; background: @border-color-dark;
} }
// =================================
// ==============nprogress==========
// =================================
#nprogress {
pointer-events: none;
.bar {
position: fixed;
top: 0;
left: 0;
z-index: 99999;
width: 100%;
height: 2px;
background-color: @primary-color;
opacity: 0.75;
}
}
...@@ -2,8 +2,8 @@ import type { Router } from 'vue-router'; ...@@ -2,8 +2,8 @@ import type { Router } from 'vue-router';
import { useTransitionSetting } from '/@/hooks/setting/useTransitionSetting'; import { useTransitionSetting } from '/@/hooks/setting/useTransitionSetting';
import NProgress from 'nprogress'; import nProgress from 'nprogress';
import 'nprogress/nprogress.css';
import { unref } from 'vue'; import { unref } from 'vue';
const { getOpenNProgress } = useTransitionSetting(); const { getOpenNProgress } = useTransitionSetting();
...@@ -11,13 +11,13 @@ const { getOpenNProgress } = useTransitionSetting(); ...@@ -11,13 +11,13 @@ const { getOpenNProgress } = useTransitionSetting();
export function createProgressGuard(router: Router) { export function createProgressGuard(router: Router) {
router.beforeEach(async (to) => { router.beforeEach(async (to) => {
if (to.meta.loaded) return true; if (to.meta.loaded) return true;
unref(getOpenNProgress) && NProgress.start(); unref(getOpenNProgress) && nProgress.start();
return true; return true;
}); });
router.afterEach(async (to) => { router.afterEach(async (to) => {
if (to.meta.loaded) return true; if (to.meta.loaded) return true;
unref(getOpenNProgress) && NProgress.done(); unref(getOpenNProgress) && nProgress.done();
return true; return true;
}); });
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册