0👍
I found the problem:
just replace Object.assign(state.userInfo, data)
to state.userInfo = Object.assign({}, state.userInfo, data)
in the store action fn;
It’s my fault , sorry!!
Source:stackexchange.com
0👍
I found the problem:
just replace Object.assign(state.userInfo, data)
to state.userInfo = Object.assign({}, state.userInfo, data)
in the store action fn;
It’s my fault , sorry!!