chore: add changeset

This commit is contained in:
braks
2022-11-06 11:00:46 +01:00
committed by Braks
parent bd7fa3c148
commit 03412acf0d

View File

@@ -0,0 +1,18 @@
---
'@vue-flow/additional-components': minor
'@vue-flow/core': minor
---
Add zoomable and pannable to MiniMap
### Usage
- Set `zoomable` and `pannable` to `true` in `MiniMap` component to enable interactions with the MiniMap
```vue
<template>
<VueFlow v-model="elements">
<MiniMap :zoomable="true" :pannable="true" />
</VueFlow>
</template>
```