- @vuepress/plugin-nprogress
- 安装
- 使用
- 自定义颜色
@vuepress/plugin-nprogress
一个基于 nprogress 的进度条插件。1.0.0-alpha.31+
安装
yarn add -D @vuepress/plugin-nprogress@next
# 或者 npm install -D @vuepress/plugin-nprogress@next
使用
module.exports = {
plugins: ['@vuepress/nprogress']
}
自定义颜色
在你的 site 或 theme 的 palette.styl
文件中设置 $nprogressColor
来改变进度条的颜色(默认使用 $accentColor
)。
// .vuepress/styles/palette.styl
// 或者
// .vuepress/theme/styles/palette.styl
$nprogressColor = red
参考:
- 配置 > Styling