fix: 去掉无用代码

This commit is contained in:
harrywan 2024-10-23 18:54:41 +08:00
parent 2e75e59eeb
commit bb617e1287
2 changed files with 2 additions and 7 deletions

View File

@ -64,9 +64,6 @@ export default (api) => {
const { baseNavigator, ...otherConfig } = userConfig;
const title = api.config.title || 'fes.js';
const isLocaleTitle = title.startsWith('$');
api.writeTmpFile({
path: join(namespace, 'locales.js'),
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),
BASE_NAVIGATOR: baseNavigator,
VUE_I18N_PATH: 'vue-i18n',
TITLE: title.slice(1),
IS_LOCALE_TITle: isLocaleTitle,
}),
});

View File

@ -3,9 +3,9 @@ import { ref, watch } from 'vue';
import PageLoading from '@/components/pageLoading.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 = {