File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 0.1.13] ( https://github.com/ibwei/vue3-base/compare/v0.1.10...v0.1.13 ) (2020-11-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * ** i18n:** 修复 antd-vue 语言国际化出错问题 ([ 1cd844d] ( https://github.com/ibwei/vue3-base/commit/1cd844d08d51b0dc115dbe47352caadd684380ef ) )
7
+ * ** i18n:** 修复safari 不支持先行和后行断言的导致的白屏问题 ([ 384499b] ( https://github.com/ibwei/vue3-base/commit/384499be25429152a10a277049b391eae969e856 ) )
8
+ * ** thme:** 修改 ant-design-vue自定义主题在 build 之后无法覆盖成功的问题 ([ 29a591d] ( https://github.com/ibwei/vue3-base/commit/29a591d0cf17429cb528f485171be3b6ae4f7ff8 ) )
9
+
10
+
11
+
1
12
## [ 0.1.12] ( https://github.com/ibwei/vue3-base/compare/v0.1.10...v0.1.12 ) (2020-11-01)
2
13
3
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue3-base-type" ,
3
- "version" : " 0.1.13 " ,
3
+ "version" : " 0.1.14 " ,
4
4
"description" : " 一个使用vue3+typescript 搭建的项目基础架构类型声明库" ,
5
5
"author" : {
6
6
"name" : " ibwei" ,
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ function loadAtdLocales() {
55
55
)
56
56
files . keys ( ) . forEach ( key => {
57
57
const fileName = key . slice ( 2 , key . lastIndexOf ( '.' ) )
58
- if ( includes ( TranslateTable , fileName [ 0 ] ) ) {
59
- const localeKey = findKeyByValue ( TranslateTable , fileName [ 0 ] )
58
+ if ( includes ( TranslateTable , fileName ) ) {
59
+ const localeKey = findKeyByValue ( TranslateTable , fileName )
60
60
if ( localeKey ) {
61
61
Locales [ localeKey ] = files ( key ) . default
62
62
}
You can’t perform that action at this time.
0 commit comments