@dcloudio/uni-mp-vue 3.0.0-alpha-3030820220114008 → 3.0.0-alpha-3031120220216001

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.
@@ -3808,9 +3808,11 @@ const PublicInstanceProxyHandlers = {
3808
3808
  const { data, setupState, ctx } = instance;
3809
3809
  if (setupState !== EMPTY_OBJ && hasOwn(setupState, key)) {
3810
3810
  setupState[key] = value;
3811
+ return true;
3811
3812
  }
3812
3813
  else if (data !== EMPTY_OBJ && hasOwn(data, key)) {
3813
3814
  data[key] = value;
3815
+ return true;
3814
3816
  }
3815
3817
  else if (hasOwn(instance.props, key)) {
3816
3818
  (process.env.NODE_ENV !== 'production') &&
@@ -3846,6 +3848,15 @@ const PublicInstanceProxyHandlers = {
3846
3848
  hasOwn(ctx, key) ||
3847
3849
  hasOwn(publicPropertiesMap, key) ||
3848
3850
  hasOwn(appContext.config.globalProperties, key));
3851
+ },
3852
+ defineProperty(target, key, descriptor) {
3853
+ if (descriptor.get != null) {
3854
+ this.set(target, key, descriptor.get(), null);
3855
+ }
3856
+ else if (descriptor.value != null) {
3857
+ this.set(target, key, descriptor.value, null);
3858
+ }
3859
+ return Reflect.defineProperty(target, key, descriptor);
3849
3860
  }
3850
3861
  };
3851
3862
  if ((process.env.NODE_ENV !== 'production') && !false) {
@@ -4415,7 +4426,7 @@ const useSSRContext = () => {
4415
4426
  };
4416
4427
 
4417
4428
  // Core API ------------------------------------------------------------------
4418
- const version = "3.2.30";
4429
+ const version = "3.2.31";
4419
4430
  /**
4420
4431
  * @internal only exposed in compat builds
4421
4432
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-mp-vue",
3
- "version": "3.0.0-alpha-3030820220114008",
3
+ "version": "3.0.0-alpha-3031120220216001",
4
4
  "description": "@dcloudio/uni-mp-vue",
5
5
  "main": "dist/vue.runtime.esm.js",
6
6
  "module": "dist/vue.runtime.esm.js",
@@ -19,6 +19,6 @@
19
19
  },
20
20
  "gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
21
21
  "devDependencies": {
22
- "@dcloudio/uni-mp-vue": "3.0.0-alpha-3030820220114008"
22
+ "@dcloudio/uni-mp-vue": "3.0.0-alpha-3031120220216001"
23
23
  }
24
24
  }