[Vuejs]-Vue js โ€“ not all the data showing after store dispatch

0๐Ÿ‘

โœ…

I did return to dispatch

let dispatch = this.getWholeDictionaryList(prop.dictionaryId.value, prop)
let promiseArr = [];

promiseArr.push(dispatch);
after the map closing tag i did

Promise.all(promisArr).then( () => {
                                        debugger
                                        this.$data.propertiesTree = anyData;
                                    });

And Iโ€™ve got it solved

Leave a comment