mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 修复清空父应用状态,子应用状态未清空问题
This commit is contained in:
parent
cfa522a3d3
commit
2e28b526ca
@ -3,6 +3,9 @@ import { cloneDeep } from 'lodash-es'
|
||||
let initState = reactive({});
|
||||
const setModelState = (props) => {
|
||||
// 使用深拷贝去掉主应用数据和子应用数据的引用关系,避免出现副作用。
|
||||
Object.keys(initState).forEach(p=>{
|
||||
delete initState[p]
|
||||
})
|
||||
Object.assign(initState, cloneDeep(props))
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user