From 4a304163e364e38275d6524e01997e6e36063839 Mon Sep 17 00:00:00 2001 From: harrywan Date: Mon, 12 Jul 2021 18:05:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(plugin-qiankun):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=9B=B4=E6=96=B0props=E6=97=B6,model=E6=9C=AA=E5=93=8D?= =?UTF-8?q?=E5=BA=94=E5=BC=8F=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/micro/runtime/qiankunModel.tpl | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/fes-plugin-qiankun/src/micro/runtime/qiankunModel.tpl b/packages/fes-plugin-qiankun/src/micro/runtime/qiankunModel.tpl index 7348a0b5..93bf2383 100644 --- a/packages/fes-plugin-qiankun/src/micro/runtime/qiankunModel.tpl +++ b/packages/fes-plugin-qiankun/src/micro/runtime/qiankunModel.tpl @@ -1,11 +1,10 @@ - import { reactive } from 'vue'; -let initState; -const setModelState = (val) => { - initState = val; +let initState = reactive({}); +const setModelState = (props) => { + Object.assign(initState, props) }; -export default () => reactive(initState); +export default () => initState; -export { setModelState }; +export { setModelState }; \ No newline at end of file