mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* feat: layout的title支持国际化 * feat: locale插件暴漏onLocaleChange事件 * chore: change docs * fix: 去掉无用代码 --------- Co-authored-by: winixt <haizekuo@gmail.com>
28 lines
748 B
TypeScript
28 lines
748 B
TypeScript
import type { VueI18n } from 'vue-i18n';
|
|
|
|
export { useI18n } from 'vue-i18n';
|
|
|
|
export const locale: {
|
|
setLocale: ({ locale }: { locale: string }) => void;
|
|
addLocale: ({ locale, messages }: { locale: string; messages: object }) => void;
|
|
getAllLocales: () => string[];
|
|
messages: Record<string, object>;
|
|
t: VueI18n['t'];
|
|
};
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig {
|
|
locale?:
|
|
| {
|
|
locale: string;
|
|
fallbackLocale: string;
|
|
baseNavigator: boolean;
|
|
legacy: boolean;
|
|
}
|
|
| false;
|
|
}
|
|
interface PluginRuntimeConfig {
|
|
onLocaleChange: (params: { t: VueI18n['t']; locale: string }) => void;
|
|
}
|
|
}
|