@@ -123,6 +123,7 @@ export const useTreeSelect = <T>(
const path = computed({
get: () => getTreePath(options.value, props.modelValue)!,
set: (path) => {
+ console.log("path", path);
update(path ? path[path.length - 1] : "");
},
});