update(examples): remove logs

This commit is contained in:
Braks
2022-04-04 21:42:48 +02:00
parent 631a764152
commit 349ecf8254
2 changed files with 1 additions and 5 deletions
+1 -3
View File
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { ref, onMounted } from "vue";
import { ref } from "vue";
import {
BackgroundVariant,
VueFlow,
@@ -40,8 +40,6 @@ const { id, onPaneReady, store } = useVueFlow({
nodeExtent: [[-50, -150], [500, 300]]
});
onMounted(() => console.log(id));
onPaneReady((i) => emit("pane", i));
const el = templateRef<HTMLDivElement>("el", null);
@@ -32,8 +32,6 @@ const edgePath = computed(() =>
targetPosition: props.targetPosition,
}),
)
console.log(props)
</script>
<script lang="ts">
export default {