听海 a303e171c9
feat: 暴露语言变化事件 & layout的title支持配置国际化 (#255)
* feat: layout的title支持国际化

* feat: locale插件暴漏onLocaleChange事件

* chore: change docs

* fix: 去掉无用代码

---------

Co-authored-by: winixt <haizekuo@gmail.com>
2024-10-23 18:58:36 +08:00

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;
}
}