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,9 +3,12 @@ import { cloneDeep } from 'lodash-es'
|
|||||||
let initState = reactive({});
|
let initState = reactive({});
|
||||||
const setModelState = (props) => {
|
const setModelState = (props) => {
|
||||||
// 使用深拷贝去掉主应用数据和子应用数据的引用关系,避免出现副作用。
|
// 使用深拷贝去掉主应用数据和子应用数据的引用关系,避免出现副作用。
|
||||||
|
Object.keys(initState).forEach(p=>{
|
||||||
|
delete initState[p]
|
||||||
|
})
|
||||||
Object.assign(initState, cloneDeep(props))
|
Object.assign(initState, cloneDeep(props))
|
||||||
};
|
};
|
||||||
|
|
||||||
export default () => initState;
|
export default () => initState;
|
||||||
|
|
||||||
export { setModelState };
|
export { setModelState };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user