Service updates
This commit is contained in:
@@ -6,11 +6,10 @@ const treeValue = ref(null);
|
||||
const selectedTreeValue = ref(null);
|
||||
const treeTableValue = ref(null);
|
||||
const selectedTreeTableValue = ref(null);
|
||||
const nodeService = new NodeService();
|
||||
|
||||
onMounted(() => {
|
||||
nodeService.getTreeNodes().then((data) => (treeValue.value = data));
|
||||
nodeService.getTreeTableNodes().then((data) => (treeTableValue.value = data));
|
||||
NodeService.getTreeNodes().then((data) => (treeValue.value = data));
|
||||
NodeService.getTreeTableNodes().then((data) => (treeTableValue.value = data));
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user