@tplc/business 0.2.26 → 0.2.27
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.2.27](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.26...v0.2.27) (2024-12-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* list 支持 options ([7942bf8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7942bf85e27ce9f33e8f92d465885a1566733c09))
|
|
11
|
+
|
|
5
12
|
### [0.2.26](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.25...v0.2.26) (2024-12-20)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -52,8 +52,9 @@ const props = defineProps({
|
|
|
52
52
|
],
|
|
53
53
|
},
|
|
54
54
|
})
|
|
55
|
-
const value = ref(props.defaultValue)
|
|
56
55
|
const model = defineModel<number[]>()
|
|
56
|
+
const value = ref(model.value || props.defaultValue)
|
|
57
|
+
|
|
57
58
|
const getDayInfo = async () => {
|
|
58
59
|
const { data } = await queryHolidayInfoList({
|
|
59
60
|
/** 本月的第一天 */
|