mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
docs: 更新文档
This commit is contained in:
parent
a3847f167a
commit
6e88e90a9d
@ -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:
|
||||
|
@ -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测试"
|
||||
|
@ -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)了解更多。
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user