docs: 更新文档

This commit is contained in:
wanchun 2022-11-17 14:45:31 +08:00
parent a3847f167a
commit 6e88e90a9d
3 changed files with 31 additions and 7 deletions

View File

@ -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:

View File

@ -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测试"

View File

@ -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)了解更多
### 其他 Router Methods
查看[vue-router 官方文档](https://next.router.vuejs.org/api/#router-methods)了解更多。