mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 去掉无用代码
This commit is contained in:
parent
2e75e59eeb
commit
bb617e1287
@ -64,9 +64,6 @@ export default (api) => {
|
|||||||
|
|
||||||
const { baseNavigator, ...otherConfig } = userConfig;
|
const { baseNavigator, ...otherConfig } = userConfig;
|
||||||
|
|
||||||
const title = api.config.title || 'fes.js';
|
|
||||||
const isLocaleTitle = title.startsWith('$');
|
|
||||||
|
|
||||||
api.writeTmpFile({
|
api.writeTmpFile({
|
||||||
path: join(namespace, 'locales.js'),
|
path: join(namespace, 'locales.js'),
|
||||||
content: Mustache.render(readFileSync(join(__dirname, 'runtime/locales.js.tpl'), 'utf-8'), {
|
content: Mustache.render(readFileSync(join(__dirname, 'runtime/locales.js.tpl'), 'utf-8'), {
|
||||||
@ -84,8 +81,6 @@ export default (api) => {
|
|||||||
REPLACE_DEFAULT_OPTIONS: JSON.stringify(otherConfig, null, 2),
|
REPLACE_DEFAULT_OPTIONS: JSON.stringify(otherConfig, null, 2),
|
||||||
BASE_NAVIGATOR: baseNavigator,
|
BASE_NAVIGATOR: baseNavigator,
|
||||||
VUE_I18N_PATH: 'vue-i18n',
|
VUE_I18N_PATH: 'vue-i18n',
|
||||||
TITLE: title.slice(1),
|
|
||||||
IS_LOCALE_TITle: isLocaleTitle,
|
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -3,9 +3,9 @@ import { ref, watch } from 'vue';
|
|||||||
import PageLoading from '@/components/pageLoading.vue';
|
import PageLoading from '@/components/pageLoading.vue';
|
||||||
import UserCenter from '@/components/userCenter.vue';
|
import UserCenter from '@/components/userCenter.vue';
|
||||||
|
|
||||||
export function onLocaleChange({ locale }) {
|
export function onLocaleChange({ locale, t }) {
|
||||||
// 切换语言
|
// 切换语言
|
||||||
console.log(locale);
|
console.log(locale, t);
|
||||||
}
|
}
|
||||||
|
|
||||||
export const beforeRender = {
|
export const beforeRender = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user