As follows, how to get children and then update them to father.children, so that the page can be displayed in a list
state: {
father: [
{
name: 'wang',
children: []
}
]
}
action: {
getChildren(fatherId).then(children => {
// 获得children,如何更新到father.children中
});
}
我想大声告诉你2017-07-05 11:10:08
state: {
father: [
{
name: 'wang',
children: []
}
]
},
mutations:{
updateChildren(state,children){
state.father[0].children = children;
}
},
actions: {
updateChildren({commit}){
getChildren(fatherId).then(children => {
// 获得children,如何更新到father.children中
commit("updateChildren",children );
});
}
}
That’s about it, let’s take a look at the documentation