af-mobile-client-vue3 1.2.48 → 1.2.49

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.2.48",
4
+ "version": "1.2.49",
5
5
  "packageManager": "pnpm@10.12.3",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
@@ -341,7 +341,7 @@ watch(
341
341
  (newVal, oldVal) => {
342
342
  console.log('变更函数新旧值-----', newVal, oldVal)
343
343
  // 避免初始化时的调用
344
- if (oldVal !== undefined && newVal !== oldVal) {
344
+ if (newVal !== oldVal) {
345
345
  dataChangeFunc()
346
346
  }
347
347
  },