From 5c11434f71d9f848d82021dc14685d2e36b22a42 Mon Sep 17 00:00:00 2001 From: fxy060608 Date: Wed, 13 Apr 2022 16:53:48 +0800 Subject: [PATCH] build(deps): bump vue from 3.2.31 to 3.2.32 --- .../uni-app-vue/dist/nvue.runtime.esm.dev.js | 38 ++++++++++++++----- .../uni-app-vue/dist/nvue.runtime.esm.prod.js | 30 ++++++++++++--- 2 files changed, 52 insertions(+), 16 deletions(-) diff --git a/packages/uni-app-vue/dist/nvue.runtime.esm.dev.js b/packages/uni-app-vue/dist/nvue.runtime.esm.dev.js index 3bfabe38a..6238a228b 100644 --- a/packages/uni-app-vue/dist/nvue.runtime.esm.dev.js +++ b/packages/uni-app-vue/dist/nvue.runtime.esm.dev.js @@ -2039,13 +2039,13 @@ function watchEffect(effect, options) { } function watchPostEffect(effect, options) { - return doWatch(effect, null, Object.assign(options || {}, { + return doWatch(effect, null, Object.assign(Object.assign({}, options), { flush: 'post' })); } function watchSyncEffect(effect, options) { - return doWatch(effect, null, Object.assign(options || {}, { + return doWatch(effect, null, Object.assign(Object.assign({}, options), { flush: 'sync' })); } // initial value for watchers to trigger on undefined initial values @@ -2679,20 +2679,25 @@ function setTransitionHooks(vnode, hooks) { function getTransitionRawChildren(children) { var keepComment = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + var parentKey = arguments.length > 2 ? arguments[2] : undefined; var ret = []; var keyedFragmentCount = 0; for (var i = 0; i < children.length; i++) { - var child = children[i]; // handle fragment children case, e.g. v-for + var child = children[i]; // #5360 inherit parent key in case of