vue-treeselect icon indicating copy to clipboard operation
vue-treeselect copied to clipboard

loadOptions always returns No sub-options

Open ecuci opened this issue 1 year ago • 0 comments

My normalizer looks like this: normalizer(node) { return { id: node.id, label: node.name, children: node.child?.data, }; }

and I use both LOAD_CHILDREN_OPTIONS and ASYNC_SEARCH

when I set at case of LOAD_CHILDREN_OPTIONS
this: parentNode.child = { data: children }; or that: parentNode.child.data = children;

and then callback();

normalizer does not work and it says No sub-options all the time.

ecuci avatar Aug 18 '23 11:08 ecuci