Skip to content

Commit f438acb

Browse files
vueuzbcakmakoglu
authored andcommitted
fix(guide): Add missing import
1 parent 2231ee4 commit f438acb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/src/guide/getting-started.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ const edges = ref([
185185
```vue [SpecialNode.vue <LogosJavascript />]
186186
<script setup>
187187
import { computed } from 'vue'
188-
188+
import { Position, Handle } from '@vue-flow/core'
189+
189190
const props = defineProps({
190191
position: {
191192
type: Object,
@@ -387,6 +388,7 @@ const edges = ref<Edge[]>([
387388
```vue [SpecialNode.vue <LogosTypescript />]
388389
<script setup lang="ts">
389390
import { computed } from 'vue'
391+
import { Position, Handle } from '@vue-flow/core'
390392
import type { NodeProps } from '@vue-flow/core'
391393
392394
const props = defineProps<NodeProps>()

0 commit comments

Comments
 (0)