update: Add names to components

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-21 16:54:59 +01:00
parent d24de0c0c2
commit fd71e1e16e
31 changed files with 125 additions and 20 deletions
+1
View File
@@ -18,6 +18,7 @@ const props = withDefaults(defineProps<DefaultNodeProps>(), {
</script>
<script lang="ts">
export default {
name: 'DefaultNode',
inheritAttrs: false,
}
</script>
+1
View File
@@ -16,6 +16,7 @@ const props = withDefaults(defineProps<InputNodeProps>(), {
</script>
<script lang="ts">
export default {
name: 'InputNode',
inheritAttrs: false,
}
</script>
+5
View File
@@ -141,6 +141,11 @@ onMounted(() => {
})
})
</script>
<script lang="ts">
export default {
name: 'Node',
}
</script>
<template>
<DraggableCore
cancel=".nodrag"
+1
View File
@@ -16,6 +16,7 @@ const props = withDefaults(defineProps<OutputNodeProps>(), {
</script>
<script lang="ts">
export default {
name: 'OutputNode',
inheritAttrs: false,
}
</script>