Skip to content

Commit

Permalink
PATCH: fix: BIMDataTree node children components
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Apr 2, 2024
1 parent 0498b3a commit 161c745
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/BIMDataComponents/BIMDataTree/Node.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
<script>
import { inject, ref, computed, watch, isRef, h } from "vue";
const NodeChildren = {
let Node, NodeChildren;
NodeChildren = {
inject: ["root"],
props: {
node: {
Expand Down Expand Up @@ -82,7 +84,7 @@ const NodeChildren = {
},
};
export default {
Node = {
name: "Node",
components: {
NodeChildren,
Expand Down Expand Up @@ -174,6 +176,8 @@ export default {
};
},
};
export default Node;
</script>
<style scoped lang="scss">
Expand Down

0 comments on commit 161c745

Please sign in to comment.