Skip to content

迷你地图节点

🌐 MiniMap Node

迷你地图节点组件可以用来扩展默认的迷你地图节点。你可以使用它为节点添加图标,或添加自定义提示等。

🌐 The minimap node component can be used to extend the default minimap nodes. You can use it to add an icon to your node, or to add a custom tooltip etc.

用法

🌐 Usage

要使用该组件,将 MiniMapNode 作为子项传递给 MiniMap 组件。

🌐 To use the component pass the MiniMapNode as a child to the MiniMap component.

vue
<template>
  <VueFlow>
    <MiniMap>
      <template #node-input="props">
        <MiniMapNode v-bind="props" />
      </template>
    </MiniMap>
  </VueFlow>
</template>

属性

🌐 Props

名称定义类型可选默认
id节点IDstringfalse-
parentNode父节点IDstringtrue-
selected节点已选择booleantruefalse
dragging节点正在拖动booleantruefalse
position节点的 XY 位置XY位置false-
dimensions节点尺寸尺寸false-
borderRadiusMiniMap 节点 CSS 边框半径numbertrue-
colorMiniMap 节点 CSS 颜色stringtrue-
shapeRenderingMiniMap 节点 css 形状渲染ShapeRenderingtrue-
strokeColorMiniMap 节点 css 描边颜色stringtrue-
strokeWidthMiniMap 节点 css 描边宽度stringtrue-

插槽

🌐 Slots

名称定义
default插槽在小地图节点矩形下方

VueFlow 中文网 - 粤ICP备13048890号