跳转进度条支持
跳转进度条由 nprogress
实现,可在src/styles/main.css
中调整配色。
css
/** src/styles/main.css **/
/** 省略其他样式 **/
#nprogress .bar {
@apply bg-blue-700 bg-opacity-75; /** 配色 **/
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
关于 @apply
由 @unocss/transformer-directives 实现。
具体可见 👉 nprogress