vue-jstree
vue-jstree copied to clipboard
Parent folder doesn't open
var arrayToTree = require('array-to-tree');
this.axios.get('.../folders/get_list')
.then((response)=>{
this.data_to_change = response.data
this.data = arrayToTree(this.data_to_change.folder, {
parentProperty: 'PARENT',
customID: 'ID'
});
})
I see the tree, but the parent folder doesn't open Can you help me, please?
Столкнулся с такой же проблемой (... При использовании статических данных всё работает...
is there a solution