mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
15 lines
424 B
Smarty
15 lines
424 B
Smarty
import { reactive } from 'vue';
|
||
import { cloneDeep } from 'lodash-es'
|
||
let initState = reactive({});
|
||
const setModelState = (props) => {
|
||
// 使用深拷贝去掉主应用数据和子应用数据的引用关系,避免出现副作用。
|
||
Object.keys(initState).forEach(p=>{
|
||
delete initState[p]
|
||
})
|
||
Object.assign(initState, cloneDeep(props))
|
||
};
|
||
|
||
export default () => initState;
|
||
|
||
export { setModelState };
|