mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
* docs: 更新文档 * break: plugin-layout优化api * break: 去掉switch配置,改为使用navigation * feat: 重构layout * docs: 升级文档 * feat: 无logo和title时隐藏dom * fix: 修复一些问题 * fix: 配置提示 * fix: build watch copy 路径识别问题 * docs: 文档 Co-authored-by: winixt <haizekuo@gmail.com>
28 lines
766 B
JavaScript
28 lines
766 B
JavaScript
import { access as accessApi, pinia } from '@fesjs/fes';
|
|
import PageLoading from '@/components/PageLoading.vue';
|
|
import UserCenter from '@/components/UserCenter.vue';
|
|
import { useStore } from '@/store/main';
|
|
|
|
export const beforeRender = {
|
|
loading: <PageLoading />,
|
|
action() {
|
|
const { setRole } = accessApi;
|
|
return new Promise((resolve) => {
|
|
setTimeout(() => {
|
|
const store = useStore(pinia);
|
|
store.$patch({
|
|
userName: '李雷',
|
|
});
|
|
setRole('admin');
|
|
resolve({
|
|
userName: '李雷',
|
|
});
|
|
}, 1000);
|
|
});
|
|
},
|
|
};
|
|
|
|
export const layout = {
|
|
renderCustom: () => <UserCenter />,
|
|
};
|