fix: plugin-locale的legacy默认为false, 最新版vue-i18n中设置为true不支持composition api方式

This commit is contained in:
wanchun 2022-09-26 17:46:47 +08:00
parent 54ca93028b
commit d714a64b00
4 changed files with 1923 additions and 2112 deletions

View File

@ -76,7 +76,7 @@ export default {
locale: 'zh-CN', // default locale locale: 'zh-CN', // default locale
fallbackLocale: 'zh-CN', // set fallback locale fallbackLocale: 'zh-CN', // set fallback locale
baseNavigator: true, // 开启浏览器语言检测 baseNavigator: true, // 开启浏览器语言检测
legacy: true, // 用户是否需要 Legacy API 模式 legacy: false, // 用户是否需要 Legacy API 模式
} }
} }
``` ```
@ -108,7 +108,7 @@ export default {
#### legacy #### legacy
- **类型**`Boolean` - **类型**`Boolean`
- **默认值**`true` - **默认值**`false`
- **详情**:用户是否需要 Legacy API 模式 - **详情**:用户是否需要 Legacy API 模式

View File

@ -28,7 +28,10 @@ export default (api) => {
const absRuntimeFilePath = join(namespace, 'runtime.js'); const absRuntimeFilePath = join(namespace, 'runtime.js');
function getLocaleFileBasePath() { function getLocaleFileBasePath() {
return join(api.paths.absSrcPath, api.config.singular ? 'locale' : 'locales'); return join(
api.paths.absSrcPath,
api.config.singular ? 'locale' : 'locales'
);
} }
// 监听 locale 文件改变,重新生成文件 // 监听 locale 文件改变,重新生成文件
@ -39,7 +42,7 @@ export default (api) => {
const userConfig = { const userConfig = {
locale: 'zh-CN', // default locale locale: 'zh-CN', // default locale
fallbackLocale: 'zh-CN', // set fallback locale fallbackLocale: 'zh-CN', // set fallback locale
legacy: true, legacy: false,
baseNavigator: true, // 开启浏览器语言检测 baseNavigator: true, // 开启浏览器语言检测
...api.config.locale ...api.config.locale
}; };
@ -48,18 +51,20 @@ export default (api) => {
const locales = getLocalesJSON(localeConfigFileBasePath); const locales = getLocalesJSON(localeConfigFileBasePath);
const { baseNavigator, ...otherConfig } = userConfig;
api.writeTmpFile({ api.writeTmpFile({
path: absoluteFilePath, path: absoluteFilePath,
content: Mustache.render( content: Mustache.render(
readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'),
{ {
REPLACE_LOCALES: locales, REPLACE_LOCALES: locales,
REPLACE_DEFAULT_OPTIONS: JSON.stringify({ REPLACE_DEFAULT_OPTIONS: JSON.stringify(
locale: userConfig.locale, otherConfig,
fallbackLocale: userConfig.fallbackLocale, null,
legacy: userConfig.legacy 2
}, null, 2), ),
BASE_NAVIGATOR: userConfig.baseNavigator, BASE_NAVIGATOR: baseNavigator,
VUE_I18N_PATH: resolvePkg('vue-i18n') VUE_I18N_PATH: resolvePkg('vue-i18n')
} }
) )

View File

@ -80,9 +80,6 @@ export default {
defaultExpandAll: false defaultExpandAll: false
} }
}, },
locale: {
legacy: true
},
devServer: { devServer: {
port: 8080 port: 8080
}, },

4007
yarn.lock

File diff suppressed because it is too large Load Diff