cloud-web-corejs 1.0.220 → 1.0.221
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/utils/vab.js +1 -1
package/package.json
CHANGED
package/src/utils/vab.js
CHANGED
|
@@ -1229,7 +1229,7 @@ install = (Vue, opts = {}) => {
|
|
|
1229
1229
|
if(!i18n.te(path)){
|
|
1230
1230
|
return i18n._t(path, lang, {zh: {[path]: path}}, null, values);
|
|
1231
1231
|
}else{
|
|
1232
|
-
return i18n.t(path, values);
|
|
1232
|
+
return i18n.t(path, values) || i18n._t(path, lang, {zh: {[path]: path}}, null, values);
|
|
1233
1233
|
}
|
|
1234
1234
|
}
|
|
1235
1235
|
};
|