mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
import { plugin } from '@@/core/coreExports';
|
|
// eslint-disable-next-line import/extensions
|
|
import { useI18n, locale, install } from './core';
|
|
import SelectLang from './views/SelectLang.vue';
|
|
|
|
// 共享出去
|
|
plugin.share('locale', { useI18n, locale, SelectLang });
|
|
|
|
export function onAppCreated({ app }) {
|
|
install(app);
|
|
}
|