af-mobile-client-vue3 1.1.14 → 1.1.15

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.1.14",
4
+ "version": "1.1.15",
5
5
  "description": "Vue + Vite component lib",
6
6
  "license": "MIT",
7
7
  "engines": {
@@ -199,6 +199,9 @@ watch(() => props.modelValue, (newVal) => {
199
199
  }
200
200
  else {
201
201
  localValue.value = newVal !== undefined ? newVal : getDefaultValue()
202
+ if (attr.type === 'rangePicker') {
203
+ pickerValue.value = newVal !== undefined ? `${newVal[0]} ~ ${newVal[1]}` : ''
204
+ }
202
205
  }
203
206
  })
204
207