Files
vue-flow/packages/minimap
2026-03-17 16:28:59 +03:30
..
2025-08-15 13:25:11 +02:00
2026-03-17 16:28:59 +03:30
2026-03-17 16:28:59 +03:30
2023-03-07 19:15:51 +01:00

Vue Flow: MiniMap Component

This is a minimap component for Vue Flow. It can be used to add a minimap to the canvas, which will show a smaller version of the canvas with your nodes. The minimap can also be used to pan and zoom the main canvas.

🛠 Setup

# install
$ yarn add @vue-flow/minimap

# or
$ npm i --save @vue-flow/minimap

🎮 Quickstart

<script setup>
import { VueFlow } from '@vue-flow/core'
import { MiniMap } from '@vue-flow/minimap'

// import default minimap styles
import '@vue-flow/minimap/dist/style.css'

import initialElements from './initial-elements'

// some nodes and edges
const elements = ref(initialElements)
</script>

<template>
  <VueFlow v-model="elements" fit-view-on-init class="vue-flow-basic-example">
    <MiniMap />
  </VueFlow>
</template>