修复文档问题,解决编译后的文档刷新会导致其他页面不能正常显示

This commit is contained in:
万纯 2020-09-02 12:09:19 +08:00 committed by harrywan
parent a49df96343
commit 06555ad02a
3 changed files with 73 additions and 63 deletions

View File

@ -1,13 +1,16 @@
module.exports = { module.exports = {
base: "/fes.js/", base: "/fes.js/",
title: "Fes.js", title: "Fes.js",
description: "Curd应用快速解决方案", description: "中台应用前端快速解决方案",
themeConfig: { themeConfig: {
repo: "WeBankFinTech/fes.js",
sidebarDepth: 3,
lastUpdated: "上次编辑时间",
nav: [ nav: [
{ text: "指南", link: "/guide/" }, { text: "指南", link: "/guide/" },
{ text: "API参考", link: "/api/" }, { text: "API参考", link: "/api/" },
{ text: "组件", link: "/ui/" }, { text: "组件", link: "/ui/" }
{ text: "CLI", link: "/cli/" } // { text: "CLI", link: "/cli/" }
], ],
sidebar: { sidebar: {
"/guide/": [ "/guide/": [
@ -16,15 +19,15 @@ module.exports = {
collapsable: false, collapsable: false,
sidebarDepth: 1, sidebarDepth: 1,
children: [ children: [
"", "/guide/",
"install", "/guide/install.md",
"play", "/guide/play",
"directory-structure", "/guide/directory-structure",
"layout", "/guide/layout",
"route", "/guide/route",
"permisson", "/guide/permisson",
"i18n", "/guide/i18n",
"option" "/guide/option"
] ]
}, },
{ {
@ -32,7 +35,7 @@ module.exports = {
collapsable: false, collapsable: false,
sidebarDepth: 1, sidebarDepth: 1,
children: [] children: []
}, }
// { // {
// title: "迁移", // title: "迁移",
// collapsable: false, // collapsable: false,
@ -40,54 +43,52 @@ module.exports = {
// children: ["migration", "migrationLast"] // children: ["migration", "migrationLast"]
// } // }
], ],
"/api/": [""], "/api/": ["/api/"],
"/ui/": [ "/ui/": [
"", "/ui/",
{ {
title: "组件库", title: "组件库",
collapsable: false, collapsable: false,
sidebarDepth: 1, sidebarDepth: 1,
children: [ children: [
"layout", "/ui/layout",
"icon", "/ui/icon",
"button", "/ui/button",
"menu", "/ui/menu",
"dropdown", "/ui/dropdown",
"contextmenu", "/ui/contextmenu",
"collapse", "/ui/collapse",
"tab", "/ui/tab",
"table", "/ui/table",
"pagination", "/ui/pagination",
"panel", "/ui/panel",
"tree", "/ui/tree",
"step", "/ui/step",
"zoom", "/ui/zoom",
"carousel", "/ui/carousel",
"toast", "/ui/toast",
"message", "/ui/message",
"modal", "/ui/modal",
"tooltip", "/ui/tooltip",
"loading", "/ui/loading",
"process-circle", "/ui/process-circle",
"input", "/ui/input",
"select", "/ui/select",
"radio", "/ui/radio",
"checkbox", "/ui/checkbox",
"datePicker", "/ui/datePicker",
"timePicker", "/ui/timePicker",
"switch", "/ui/switch",
"form", "/ui/form",
"upload", "/ui/upload",
// "affix", // "/ui/affix",
'backTop', "/ui/backTop",
'draggable', "/ui/draggable",
"split", "/ui/split"
] ]
} }
], ]
// "/cli/": [{}] // "/cli/": [{}]
}, }
lastUpdated: "Last Updated",
smoothScroll: true
} }
}; };

View File

@ -1,5 +1,6 @@
// 使用异步函数也是可以的 // 使用异步函数也是可以的
import "@webank/fes-ui/dist/styles/fes-ui.css"; import "@webank/fes-ui/dist/styles/fes-ui.css";
let installed = false;
export default ({ export default ({
Vue, // VuePress 正在使用的 Vue 构造函数 Vue, // VuePress 正在使用的 Vue 构造函数
options, // 附加到根实例的一些选项 options, // 附加到根实例的一些选项
@ -7,14 +8,20 @@ export default ({
siteData, // 站点元数据 siteData, // 站点元数据
isServer // 当前应用配置是处于 服务端渲染 或 客户端 isServer // 当前应用配置是处于 服务端渲染 或 客户端
}) => { }) => {
Vue.mixin({ return new Promise(function(resole, reject) {
mounted(){ if (!isServer) {
import("@webank/fes-ui").then(({ default: UiWebank }) => { import("@webank/fes-ui")
.then(({ default: UiWebank }) => {
installed = true;
// install 组件库 // install 组件库
Vue.use(UiWebank, { Vue.use(UiWebank, {
locale: "zh-cn" locale: "zh-cn"
}); });
}); resole();
}
}) })
.catch(reject);
} else {
resole();
}
});
}; };

View File

@ -19,7 +19,9 @@
"devDependencies": { "devDependencies": {
"sass": "^1.26.10", "sass": "^1.26.10",
"sass-loader": "^9.0.2", "sass-loader": "^9.0.2",
"vuepress": "^1.5.2" "vuepress": "^1.5.4",
"@vuepress/plugin-pwa": "^1.5.0",
"@vuepress/theme-vue": "^1.5.0"
}, },
"dependencies": { "dependencies": {
"@webank/fes-ui": "^0.1.0" "@webank/fes-ui": "^0.1.0"