File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ toc: false
55docClass : timeline
66---
77
8- ## 🌈 1.9.2 ` 2024-03-29 `
8+ ## 🌈 1.9.3 ` 2024-03-29 `
99### 🐞 Bug Fixes
1010- ` Form ` : 修复` 1.9.1 ` 版本的告警问题 @uyarn ([ #4060 ] ( https://github.com/Tencent/tdesign-vue-next/pull/4060 ) )
1111- ` Loading ` : 修复` 1.9.1 ` 版本对外暴露 ` directive ` 使用的告警及命名错误 @uyarn ([ #4060 ] ( https://github.com/Tencent/tdesign-vue-next/pull/4060 ) )
12+ - ` DatePicker ` : 修复` 1.9.1 ` 版本使用` Date ` 的异常问题 @uyarn
1213
1314## 🌈 1.9.1 ` 2024-03-28 `
1415### 🚀 Features
Original file line number Diff line number Diff line change 11{
22 "name" : " tdesign-vue-next" ,
33 "purename" : " tdesign" ,
4- "version" : " 1.9.2 " ,
4+ "version" : " 1.9.3 " ,
55 "title" : " tdesign-vue-next" ,
66 "description" : " TDesign Component for vue-next" ,
77 "keywords" : [
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export default defineComponent({
6060 } ) ;
6161
6262 watch ( popupVisible , ( visible ) => {
63- const dateValue = covertToDate ( value . value as string , formatRef . value ?. valueType ) ;
63+ const dateValue = value . value ? covertToDate ( value . value as string , formatRef . value ?. valueType ) : value . value ;
6464
6565 cacheValue . value = formatDate ( dateValue , {
6666 format : formatRef . value . format ,
You can’t perform that action at this time.
0 commit comments