@cc-component/cc-ex-component 1.7.1 → 1.7.2

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.
@@ -241,7 +241,7 @@ export function ViewModel<T extends new (...args: any[]) => Component>(Base: T)
241
241
  // ✅ 跳过 $ 开头的属性:不触发响应式更新
242
242
  if (key.startsWith(skip)) {
243
243
  target[key] = value;
244
- this.refreshData(key, value)
244
+ self.refreshData(key, value)
245
245
  return true;
246
246
  }
247
247
  else if (value?.skip) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cc-component/cc-ex-component",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "engine": ">=3.8.6",
5
5
  "description": "系统组件添加常用扩展方法",
6
6
  "main": "index.ts",