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