docs: cleanup

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2022-12-09 20:35:34 +01:00
committed by Braks
parent 7db0575fef
commit e0c4f4d64c
3 changed files with 3 additions and 0 deletions

View File

@@ -74,6 +74,7 @@ onMounted(async () => {
imports: {
'@vue-flow/additional-components': `${location.origin}/vue-flow-additional-components.mjs`,
'@vue-flow/core': `${location.origin}/vue-flow-core.mjs`,
'@vue-flow/node-toolbar': `${location.origin}/vue-flow-node-toolbar.mjs`,
...additionalImports,
},
})

View File

@@ -1,5 +1,6 @@
<script setup>
import { Position, VueFlow } from '@vue-flow/core'
import { ref } from 'vue'
import ToolbarNode from './ToolbarNode.vue'
const defaultNodeStyle = {

View File

@@ -38,6 +38,7 @@ declare module '@vue/runtime-core' {
SnappableConnectionLine: typeof import('./../components/examples/snap-to-handle/SnappableConnectionLine.vue')['default']
Team: typeof import('./../components/home/Team.vue')['default']
TeleportableNode: typeof import('./../components/examples/teleport/TeleportableNode.vue')['default']
ToolbarNode: typeof import('./../components/examples/node-toolbar/ToolbarNode.vue')['default']
TransitionEdge: typeof import('./../components/examples/transition/TransitionEdge.vue')['default']
}
}