chore(examples): add cdn example file

This commit is contained in:
braks
2024-02-05 07:51:12 +01:00
committed by Braks
parent fc2f36b419
commit 10060064f2
4 changed files with 54 additions and 3 deletions
+15 -2
View File
@@ -1,4 +1,17 @@
<script setup>
const props = defineProps();
import { useHandleConnections, useNodesData } from '@vue-flow/core'
const { }
const props = defineProps({
id: {
type: String,
required: true,
},
})
const connections = useHandleConnections({
nodeId: props.id,
type: 'target',
})
const data = useNodesData()
</script>