|
@@ -103,6 +103,14 @@ export default {
|
|
onOpenSelf () {
|
|
onOpenSelf () {
|
|
this.$parent.$emit('open-node', getRelation(this.node))
|
|
this.$parent.$emit('open-node', getRelation(this.node))
|
|
}
|
|
}
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ created () {
|
|
|
|
+ if (this.mode === 'view' && this.node.siblings) {
|
|
|
|
+ // Query partial data for sibling nodes
|
|
|
|
+ const ids = this.node.siblings.map(sibling => sibling.id)
|
|
|
|
+ this.$store.dispatch('GET_NODES', { ids, dataLevel: 'initial' })
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|