refactor: rename internal data field to __vf

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-21 12:54:04 +01:00
parent 71ba905348
commit 0e9f8c5fc2
12 changed files with 62 additions and 62 deletions
@@ -92,10 +92,10 @@ const d = computed(() => {
>
<template v-for="node of nodes" :key="`mini-map-node-${node.id}`">
<slot
:x="node.__rf.position.x"
:y="node.__rf.position.y"
:width="node.__rf.width"
:height="node.__rf.height"
:x="node.__vf.position.x"
:y="node.__vf.position.y"
:width="node.__vf.width"
:height="node.__vf.height"
:style="node.style"
:class="nodeClassNameFunc(node)"
:color="nodeColorFunc(node)"
@@ -105,10 +105,10 @@ const d = computed(() => {
:shape-rendering="shapeRendering"
>
<MiniMapNode
:x="node.__rf.position.x"
:y="node.__rf.position.y"
:width="node.__rf.width"
:height="node.__rf.height"
:x="node.__vf.position.x"
:y="node.__vf.position.y"
:width="node.__vf.width"
:height="node.__vf.height"
:style="node.style"
:class="nodeClassNameFunc(node)"
:color="nodeColorFunc(node)"