From eff48ac78a646fefa934d34c42eac8d59531cced Mon Sep 17 00:00:00 2001 From: ShawnPhang Date: Thu, 21 Mar 2024 21:24:11 +0800 Subject: [PATCH 1/3] docs: readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2c1b79..ae3a4b2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -**[在线体验网站](https://design.palxp.cn/)** | **[在线文档](https://xp.palxp.cn/)** | [常见问题](https://xp.palxp.cn/#/articles/1689323321667) +**[在线体验网站](https://design.palxp.cn/)** | **[在线文档](https://xp.palxp.cn/)** | [常见问题](https://xp.palxp.cn/#/articles/1689323321667) | [性能压测](https://juejin.cn/post/7348288810722869300) --- From fe313956737e14ac350204824413fc610a43a31f Mon Sep 17 00:00:00 2001 From: IchliebedichZhu <54796446@qq.com> Date: Thu, 21 Mar 2024 13:37:56 +0000 Subject: [PATCH 2/3] feat: convert wGroupStyle to composition API --- .../modules/widgets/wGroup/wGroupStyle.vue | 217 +++++++++++------- 1 file changed, 128 insertions(+), 89 deletions(-) diff --git a/src/components/modules/widgets/wGroup/wGroupStyle.vue b/src/components/modules/widgets/wGroup/wGroupStyle.vue index b594b0b..3273750 100644 --- a/src/components/modules/widgets/wGroup/wGroupStyle.vue +++ b/src/components/modules/widgets/wGroup/wGroupStyle.vue @@ -7,19 +7,19 @@ --> - From 8a4431a0f4a89afc495bc4f1b44532eb337d5f26 Mon Sep 17 00:00:00 2001 From: IchliebedichZhu <54796446@qq.com> Date: Thu, 21 Mar 2024 14:11:06 +0000 Subject: [PATCH 3/3] fix: the default value of numberSlider component --- src/components/modules/settings/numberSlider.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modules/settings/numberSlider.vue b/src/components/modules/settings/numberSlider.vue index f226c8e..fb14179 100644 --- a/src/components/modules/settings/numberSlider.vue +++ b/src/components/modules/settings/numberSlider.vue @@ -49,7 +49,7 @@ const props = withDefaults(defineProps(), { }) const emit = defineEmits() -const innerValue = ref(1) +const innerValue = ref(props.minValue) watch( () => innerValue.value,