Skip to content

Commit

Permalink
fix(guide): Add missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
vueuz authored and bcakmakoglu committed Dec 21, 2024
1 parent 2231ee4 commit f438acb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/src/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ const edges = ref([
```vue [SpecialNode.vue <LogosJavascript />]
<script setup>
import { computed } from 'vue'
import { Position, Handle } from '@vue-flow/core'
const props = defineProps({
position: {
type: Object,
Expand Down Expand Up @@ -387,6 +388,7 @@ const edges = ref<Edge[]>([
```vue [SpecialNode.vue <LogosTypescript />]
<script setup lang="ts">
import { computed } from 'vue'
import { Position, Handle } from '@vue-flow/core'
import type { NodeProps } from '@vue-flow/core'
const props = defineProps<NodeProps>()
Expand Down

0 comments on commit f438acb

Please sign in to comment.