From 6e88e90a9de73a4362d24400538ef385b6138add Mon Sep 17 00:00:00 2001 From: wanchun <445436867@qq.com> Date: Thu, 17 Nov 2022 14:45:31 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/.vuepress/configs/navbar/zh.ts | 18 ++++++++++++++---- docs/guide/route.md | 2 +- docs/reference/api/README.md | 18 ++++++++++++++++-- 3 files changed, 31 insertions(+), 7 deletions(-) diff --git a/docs/.vuepress/configs/navbar/zh.ts b/docs/.vuepress/configs/navbar/zh.ts index e650cd4f..ff1296b5 100644 --- a/docs/.vuepress/configs/navbar/zh.ts +++ b/docs/.vuepress/configs/navbar/zh.ts @@ -21,6 +21,20 @@ export const zh: NavbarConfig = [ text: 'CLI', link: '/reference/cli/', }, + { + text: 'v3.0.0-rc.0', + children: [ + { + text: 'v2.0', + link: + 'https://fesjs.mumblefe.cn/', + }, + { + text: 'v1.0', + link: 'https://fesjs.mumblefe.cn/1.0', + }, + ], + }, { text: '了解更多', children: [ @@ -29,10 +43,6 @@ export const zh: NavbarConfig = [ link: 'https://github.com/WeBankFinTech/fes.js/blob/master/CHANGELOG.md', }, - { - text: 'v1 文档', - link: 'https://webank.gitee.io/fes.js/', - }, { text: 'fes-design', link: diff --git a/docs/guide/route.md b/docs/guide/route.md index 8dd53fc3..2f4b3bd4 100644 --- a/docs/guide/route.md +++ b/docs/guide/route.md @@ -201,7 +201,7 @@ const router = new VueRouter({ 我们使用`defineRouteMeta` 配置 `meta`: ```js -import { defineRouteMete } from '@fesjs/fes'; +import { defineRouteMeta } from '@fesjs/fes'; defineRouteMeta({ name: "store", title: "vuex测试" diff --git a/docs/reference/api/README.md b/docs/reference/api/README.md index a33f6555..efaa95f5 100644 --- a/docs/reference/api/README.md +++ b/docs/reference/api/README.md @@ -65,6 +65,15 @@ plugin.applyPlugins({ - modify,用于修改值 - event,用于执行事件,前面没有依赖关系 +### defineRouteMeta +定义页面的元信息 + +### defineBuildConfig +定义构建配置 + +### defineRuntimeConfig +定义运行时配置 + ## 路由API @@ -78,6 +87,10 @@ const router = getRouter(); router.push(); ``` +### getHistory +返回当前路由的History + + ### useRoute 返回当前 `route` 实例,相当于在模板内使用 `$route`。必须在 `setup` 函数内调用。 ```js @@ -186,5 +199,6 @@ router-view 将显示当前 URL 的对应的路由组件。你可以把它放在 ``` 可以查看[官方文档](https://next.router.vuejs.org/api/#router-view-props)了解更多 RouterView 的 Porps。查看[官方文档](https://next.router.vuejs.org/api/#router-view-s-v-slot)了解 RouterView 的作用域插槽。 -### Router Methods -查看[官方文档](https://next.router.vuejs.org/api/#router-methods)了解更多 \ No newline at end of file +### 其他 Router Methods +查看[vue-router 官方文档](https://next.router.vuejs.org/api/#router-methods)了解更多。 +