mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
docs: 更新model和access文档
This commit is contained in:
parent
0236057c51
commit
0d075f0037
@ -195,7 +195,7 @@ console.log(access.isDataReady())
|
|||||||
- Promise,Promise resolve 的结果应对应着 `roles` 配置对象中的 `key`。
|
- Promise,Promise resolve 的结果应对应着 `roles` 配置对象中的 `key`。
|
||||||
```js
|
```js
|
||||||
import { access } from '@fesjs/fes';
|
import { access } from '@fesjs/fes';
|
||||||
access.setRole(['admin'])
|
access.setRole('admin')
|
||||||
```
|
```
|
||||||
|
|
||||||
#### access.setAccess
|
#### access.setAccess
|
||||||
|
@ -53,6 +53,46 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### @@initialState
|
||||||
|
在`beforeRender`的返回的内容会写入`@@initialState`
|
||||||
|
```js
|
||||||
|
export const beforeRender = {
|
||||||
|
loading: <PageLoading />,
|
||||||
|
action() {
|
||||||
|
const { setRole } = access;
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
setTimeout(() => {
|
||||||
|
setRole('admin');
|
||||||
|
// 初始化应用的全局状态,可以通过 useModel('@@initialState') 获取,具体用法看@/components/UserCenter 文件
|
||||||
|
resolve({
|
||||||
|
userName: 'harrywan'
|
||||||
|
});
|
||||||
|
}, 1000);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
````
|
||||||
|
然后我们可以在其他组件中使用:
|
||||||
|
```vue
|
||||||
|
<template>
|
||||||
|
<div class="right">{{initialState.userName}}</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { useModel } from '@fesjs/fes';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
const initialState = useModel('@@initialState');
|
||||||
|
return {
|
||||||
|
initialState
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scope>
|
||||||
|
</style>
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
|
@ -195,7 +195,7 @@ console.log(access.isDataReady())
|
|||||||
- Promise,Promise resolve 的结果应对应着 `roles` 配置对象中的 `key`。
|
- Promise,Promise resolve 的结果应对应着 `roles` 配置对象中的 `key`。
|
||||||
```js
|
```js
|
||||||
import { access } from '@fesjs/fes';
|
import { access } from '@fesjs/fes';
|
||||||
access.setRole(['admin'])
|
access.setRole('admin')
|
||||||
```
|
```
|
||||||
|
|
||||||
#### access.setAccess
|
#### access.setAccess
|
||||||
|
@ -53,6 +53,46 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### @@initialState
|
||||||
|
在`beforeRender`的返回的内容会写入`@@initialState`
|
||||||
|
```js
|
||||||
|
export const beforeRender = {
|
||||||
|
loading: <PageLoading />,
|
||||||
|
action() {
|
||||||
|
const { setRole } = access;
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
setTimeout(() => {
|
||||||
|
setRole('admin');
|
||||||
|
// 初始化应用的全局状态,可以通过 useModel('@@initialState') 获取,具体用法看@/components/UserCenter 文件
|
||||||
|
resolve({
|
||||||
|
userName: 'harrywan'
|
||||||
|
});
|
||||||
|
}, 1000);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
````
|
||||||
|
然后我们可以在其他组件中使用:
|
||||||
|
```vue
|
||||||
|
<template>
|
||||||
|
<div class="right">{{initialState.userName}}</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { useModel } from '@fesjs/fes';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
const initialState = useModel('@@initialState');
|
||||||
|
return {
|
||||||
|
initialState
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scope>
|
||||||
|
</style>
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user