mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +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>
40 lines
1.4 KiB
Smarty
40 lines
1.4 KiB
Smarty
import { ref, defineComponent, computed } from 'vue';
|
||
import { plugin } from '@@/core/coreExports';
|
||
import { getRoutes } from '@@/core/routes/routes';
|
||
import BaseLayout from './BaseLayout.vue';
|
||
// eslint-disable-next-line import/extensions
|
||
import getConfig from '../helpers/getConfig';
|
||
import fillMenu from '../helpers/fillMenu';
|
||
|
||
const Layout = defineComponent({
|
||
name: 'Layout',
|
||
setup() {
|
||
const initConfig = {{{REPLACE_USER_CONFIG}}}
|
||
const config = {...initConfig, ...getConfig()};
|
||
|
||
let menusRef = ref(config.menus);
|
||
// 如果运行时配置了,则需要处理
|
||
if (config.menus && typeof config.menus === 'function') {
|
||
menusRef = ref(config.menus());
|
||
}
|
||
// 把路由的meta合并到menu配置中
|
||
const filledMenuRef = computed(() => fillMenu(menusRef.value, getRoutes()));
|
||
|
||
const localeShared = plugin.getShared('locale');
|
||
return () => {
|
||
const slots = {
|
||
renderCustom: config.renderCustom,
|
||
locale: () => {
|
||
if (localeShared) {
|
||
return <localeShared.SelectLang></localeShared.SelectLang>;
|
||
}
|
||
return null;
|
||
},
|
||
};
|
||
return <BaseLayout {...config} locale={localeShared ? true : false} menus={filledMenuRef.value} v-slots={slots}></BaseLayout>;
|
||
};
|
||
},
|
||
});
|
||
|
||
export default Layout;
|