@dcloudio/uni-mp-vue 3.0.0-alpha-3060420220922003 → 3.0.0-alpha-3060420220922005

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.
@@ -2219,7 +2219,7 @@ function injectHook(type, hook, target = currentInstance, prepend = false) {
2219
2219
  const createHook = (lifecycle) => (hook, target = currentInstance) =>
2220
2220
  // post-create lifecycle registrations are noops during SSR (except for serverPrefetch)
2221
2221
  (!isInSSRComponentSetup || lifecycle === "sp" /* LifecycleHooks.SERVER_PREFETCH */) &&
2222
- injectHook(lifecycle, hook, target);
2222
+ injectHook(lifecycle, (...args) => hook(...args), target);
2223
2223
  const onBeforeMount = createHook("bm" /* LifecycleHooks.BEFORE_MOUNT */);
2224
2224
  const onMounted = createHook("m" /* LifecycleHooks.MOUNTED */);
2225
2225
  const onBeforeUpdate = createHook("bu" /* LifecycleHooks.BEFORE_UPDATE */);
@@ -4495,7 +4495,7 @@ const useSSRContext = () => {
4495
4495
  };
4496
4496
 
4497
4497
  // Core API ------------------------------------------------------------------
4498
- const version = "3.2.39";
4498
+ const version = "3.2.40";
4499
4499
  /**
4500
4500
  * @internal only exposed in compat builds
4501
4501
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-mp-vue",
3
- "version": "3.0.0-alpha-3060420220922003",
3
+ "version": "3.0.0-alpha-3060420220922005",
4
4
  "description": "@dcloudio/uni-mp-vue",
5
5
  "main": "dist/vue.runtime.esm.js",
6
6
  "module": "dist/vue.runtime.esm.js",
@@ -19,10 +19,10 @@
19
19
  },
20
20
  "gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
21
21
  "dependencies": {
22
- "@dcloudio/uni-shared": "3.0.0-alpha-3060420220922003",
23
- "@vue/shared": "3.2.39"
22
+ "@dcloudio/uni-shared": "3.0.0-alpha-3060420220922005",
23
+ "@vue/shared": "3.2.40"
24
24
  },
25
25
  "devDependencies": {
26
- "@dcloudio/uni-mp-vue": "3.0.0-alpha-3060420220922003"
26
+ "@dcloudio/uni-mp-vue": "3.0.0-alpha-3060420220922005"
27
27
  }
28
28
  }