mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-01 03:07:38 +08:00
docs: api部分
This commit is contained in:
parent
fe7284f63c
commit
72c74370d3
@ -7,7 +7,7 @@ const config: UserConfig<DefaultThemeOptions> = {
|
||||
|
||||
evergreen: process.env.NODE_ENV !== 'production',
|
||||
|
||||
head: [['link', { rel: 'icon', href: `/logo.png` }]],
|
||||
head: [['link', { rel: 'manifest', href: '/manifest.webmanifest' }], ['link', { rel: 'icon', href: `/logo.png` }]],
|
||||
|
||||
// site-level locales config
|
||||
locales: {
|
||||
@ -88,26 +88,30 @@ const config: UserConfig<DefaultThemeOptions> = {
|
||||
},
|
||||
|
||||
plugins: [
|
||||
[
|
||||
'@vuepress/plugin-docsearch',
|
||||
{
|
||||
apiKey: '<API_KEY>',
|
||||
indexName: '<INDEX_NAME>',
|
||||
locales: {
|
||||
'/': {
|
||||
placeholder: 'Search Documentation',
|
||||
},
|
||||
'/zh/': {
|
||||
placeholder: '搜索文档',
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
// [
|
||||
// '@vuepress/plugin-docsearch',
|
||||
// {
|
||||
// apiKey: '<API_KEY>',
|
||||
// indexName: '<INDEX_NAME>',
|
||||
// locales: {
|
||||
// '/': {
|
||||
// placeholder: 'Search Documentation',
|
||||
// },
|
||||
// '/zh/': {
|
||||
// placeholder: '搜索文档',
|
||||
// },
|
||||
// },
|
||||
// },
|
||||
// ],
|
||||
['@vuepress/plugin-pwa'],
|
||||
[
|
||||
'@vuepress/plugin-pwa-popup',
|
||||
{
|
||||
locales: {
|
||||
'/': {
|
||||
message: 'New content is available.',
|
||||
buttonText: 'Refresh',
|
||||
},
|
||||
'/zh/': {
|
||||
message: '发现新内容可用',
|
||||
buttonText: '刷新',
|
||||
|
16
docs/.vuepress/public/manifest.webmanifest
Normal file
16
docs/.vuepress/public/manifest.webmanifest
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "Fes.js",
|
||||
"short_name": "Fes",
|
||||
"description": "一套好用的前端解决方案",
|
||||
"start_url": "/index.html",
|
||||
"display": "standalone",
|
||||
"background_color": "#fff",
|
||||
"theme_color": "#3eaf7c",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/hero.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
}
|
@ -3,3 +3,180 @@ sidebar: auto
|
||||
---
|
||||
|
||||
# API
|
||||
Fes.js 统一了API的出口,所有运行时API(包含Fes.js内置API和插件提供的API)全部通过`@webank/fes`导出。
|
||||
```js
|
||||
import { someApi } from "@webank/fes"
|
||||
```
|
||||
|
||||
## 基础API
|
||||
|
||||
### plugin
|
||||
::: tip
|
||||
主要在插件里面使用,项目代码中一般用不到。
|
||||
:::
|
||||
|
||||
运行时插件接口,是 Umi 内置的跑在浏览器里的一套插件体系。
|
||||
```js
|
||||
import { plugin, ApplyPluginsType } from 'umi';
|
||||
|
||||
// 注册插件
|
||||
plugin.register({
|
||||
apply: { dva: { foo: 1 } },
|
||||
path: 'foo',
|
||||
});
|
||||
plugin.register({
|
||||
apply: { dva: { bar: 1 } },
|
||||
path: 'bar',
|
||||
});
|
||||
|
||||
// 执行插件
|
||||
// 得到 { foo: 1, bar: 1 }
|
||||
plugin.applyPlugins({
|
||||
key: 'dva',
|
||||
type: ApplyPluginsType.modify,
|
||||
initialValue: {},
|
||||
args: {},
|
||||
async: false,
|
||||
});
|
||||
|
||||
```
|
||||
|
||||
#### **plugin.register** 参数包含:
|
||||
- apply 插件文件导出的内容
|
||||
- path 插件文件路径
|
||||
|
||||
|
||||
|
||||
|
||||
#### **plugin.applyPlugins** 参数包含:
|
||||
- key,坑位的 key
|
||||
- type,执行方式类型,详见 [ApplyPluginsType](#applypluginstype)
|
||||
- initialValue,初始值
|
||||
- args,参数
|
||||
- async,是否异步执行且返回 Promise
|
||||
|
||||
### ApplyPluginsType
|
||||
::: tip
|
||||
主要在插件里面使用,项目代码中一般用不到。
|
||||
:::
|
||||
|
||||
运行时插件执行类型,enum 类型,包含三个属性:
|
||||
- compose,用于合并执行多个函数,函数可决定前序函数的执行时机
|
||||
- modify,用于修改值
|
||||
- event,用于执行事件,前面没有依赖关系
|
||||
|
||||
|
||||
## 路由API
|
||||
|
||||
Fes.js 路由基于 [Vue Router 4.0](https://next.router.vuejs.org/introduction.html),想了解更多的同学可以看看官方文档。
|
||||
|
||||
### useRoute
|
||||
返回当前 `route` 实例,相当于在模板内使用 `$route`。必须在 `setup` 函数内调用。
|
||||
```js
|
||||
import { useRoute } from "@webank/fes";
|
||||
export default {
|
||||
setup(){
|
||||
const route = useRoute()
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### useRouter
|
||||
返回 `router` 实例,相当于在模板语法中使用 `$router`。必须在 `setup` 函数内调用。
|
||||
```js
|
||||
import { useRouter } from "@webank/fes";
|
||||
export default {
|
||||
setup(){
|
||||
const router = useRouter()
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### onBeforeRouteUpdate
|
||||
添加导航守卫,在当前路由即将更新时触发。类似于之前的`beforeRouteUpdate`,但是可用于任何组件。卸载组件时,将移除守卫。
|
||||
```js
|
||||
import { onBeforeRouteUpdate } from "@webank/fes";
|
||||
export default {
|
||||
setup(){
|
||||
onBeforeRouteUpdate((to, from, next)=>{
|
||||
})
|
||||
}
|
||||
}
|
||||
```
|
||||
### onBeforeRouteLeave
|
||||
添加导航守卫,在当前路由即将离开时触发。类似于之前的`beforeRouteLeave`,但可用于任何组件。卸载组件时,将移除守卫。
|
||||
```js
|
||||
import { onBeforeRouteLeave } from "@webank/fes";
|
||||
export default {
|
||||
setup(){
|
||||
onBeforeRouteLeave((to, from, next)=>{
|
||||
})
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### createWebHashHistory
|
||||
::: tip
|
||||
在开发插件时可能用上,平时一般用不上
|
||||
:::
|
||||
创建哈希历史记录。对于没有 `host`(例如file://)或者需要部署在非根目录时非常有用 。请注意,如果SEO对您很重要,您应该使用`createWebHistory`。
|
||||
|
||||
### createWebHistory
|
||||
::: tip
|
||||
在开发插件时可能用上,平时一般用不上
|
||||
:::
|
||||
创建HTML5历史记录。单页应用程序最常见的历史记录。必须通过 http 服务打开页面地址 。
|
||||
|
||||
### createMemoryHistory
|
||||
::: tip
|
||||
在开发插件时可能用上,平时一般用不上
|
||||
:::
|
||||
创建基于内存的历史。此历史的主要目的是处理 SSR。它开始于一个特殊的混沌 location 。如果用户不在浏览器上下文中,则由他们通过调用`router.push()`或`router.replace()`变更 location。
|
||||
|
||||
### createRouter
|
||||
创建一个路由器实例,该实例可用于 Vue 应用程序。查看[路由器选项](https://next.router.vuejs.org/api/#routeroptions),了解可以传递的所有属性的列表。
|
||||
|
||||
### RouterLink
|
||||
使用自定义组件路由器链接来创建链接,而不是使用常规标签。这使得 Vue 路由器无需重新加载页面即可更改 URL、处理 URL 生成及其编码。
|
||||
```html
|
||||
<router-link to="/about">Go to About</router-link>
|
||||
```
|
||||
可以查看[官方文档](https://next.router.vuejs.org/api/#router-link-props)了解更多 RouterLink 的 Porps。查看[官方文档](https://next.router.vuejs.org/api/#router-link-s-v-slot)了解 RouterLink 的作用域插槽。
|
||||
|
||||
### useLink
|
||||
返回的结果跟 RouterLink 的作用域插槽的属性一致,查看[官方API](https://next.router.vuejs.org/api/#router-link-s-v-slot)了解更多。
|
||||
```js
|
||||
import { RouterLink, useLink } from '@webank/fes'
|
||||
|
||||
export default {
|
||||
name: 'AppLink',
|
||||
|
||||
props: {
|
||||
// add @ts-ignore if using TypeScript
|
||||
...RouterLink.props,
|
||||
inactiveClass: String,
|
||||
},
|
||||
|
||||
setup(props) {
|
||||
// `props` contains `to` and any other prop that can be passed to <router-link>
|
||||
const { navigate, href, route, isActive, isExactActive } = useLink(props)
|
||||
|
||||
// profit!
|
||||
|
||||
return { isExternalLink }
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
### RouterView
|
||||
router-view 将显示当前 URL 的对应的路由组件。你可以把它放在任何地方,以适应你的布局。
|
||||
```html
|
||||
<router-view></router-view>
|
||||
<router-view v-slot="{ Component, route }">
|
||||
<component :is="Component" />
|
||||
</router-view>
|
||||
```
|
||||
可以查看[官方文档](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)了解更多
|
Loading…
Reference in New Issue
Block a user