refactor: change pkg scope to vue-flow

This commit is contained in:
braks
2022-10-08 23:25:34 +02:00
committed by Braks
parent eb507c8e76
commit 8567e3733b
163 changed files with 288 additions and 288 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ instance provided by [`onPaneReady`](/typedocs/interfaces/FlowEvents#paneready).
```vue
<script setup>
import { VueFlow, useVueFlow } from '@braks/vue-flow'
import { VueFlow, useVueFlow } from '@vue-flow/core'
const { onPaneReady } = useVueFlow()
@@ -25,7 +25,7 @@ onPaneReady((instance) => instance.fitView())
```vue
<script>
import { VueFlow } from '@braks/vue-flow'
import { VueFlow } from '@vue-flow/core'
export default defineComponent({
components: { VueFlow },