fix: 修复menu问题

This commit is contained in:
wanchun 2023-04-11 15:21:32 +08:00
parent 6b48e89e90
commit c31196ab76
4 changed files with 13 additions and 13 deletions

View File

@ -6,7 +6,7 @@ export const transTitle = (name) => {
}
const sharedLocale = plugin.getShared('locale');
if (sharedLocale) {
const { t } = sharedLocale.useI18n();
const { t } = sharedLocale.locale;
return t(name.slice(1));
}
return name;

View File

@ -1,7 +1,7 @@
<template>
<f-menu
v-model:expandedKeys="expandedKeysRef"
:modelValue="activePath"
:expandedKeys="expandedKeysRef"
:inverted="inverted"
:mode="mode"
:options="transformedMenus"
@ -20,12 +20,12 @@ import { transform as transformByLocale } from '../helpers/pluginLocale';
import { flatNodes } from '../helpers/utils';
import MenuIcon from './MenuIcon.vue';
const transform = (menus) =>
menus.map((menu) => {
const transform = (menus, level = 1) =>
menus.map((menu, index) => {
const copy = {
...menu,
label: menu.title,
value: menu.path || Date.now(),
value: menu.path || `${level}_${index}`,
};
if (menu.icon) {
copy.icon = () =>
@ -34,7 +34,7 @@ const transform = (menus) =>
});
}
if (menu.children) {
copy.children = transform(menu.children);
copy.children = transform(menu.children, level + 1);
}
return copy;
});

View File

@ -85,19 +85,19 @@ const getAllLocales = () => {
};
const install = (app) => {
const runtimeConfig = plugin.applyPlugins({
key: "locale",
type: ApplyPluginsType.modify,
initialValue: {},
});
app.use(i18n);
};
const t = (key) => {
return i18n.global.t(key)
}
const locale = {
setLocale,
addLocale,
getAllLocales,
messages,
t
};
export { useI18n, locale, install };

View File

@ -1,10 +1,10 @@
import { plugin } from '@@/core/coreExports';
// eslint-disable-next-line import/extensions
import { useI18n, install } from './core';
import { useI18n, locale, install } from './core';
import SelectLang from './views/SelectLang.vue';
// 共享出去
plugin.share('locale', { useI18n, SelectLang });
plugin.share('locale', { useI18n, locale, SelectLang });
export function onAppCreated({ app }) {
install(app);