chore(docs): cleanup theming examples

This commit is contained in:
braks
2023-11-05 21:00:04 +01:00
parent b4938930ad
commit 2b99b77aea
2 changed files with 11 additions and 45 deletions
+2 -2
View File
@@ -68,7 +68,7 @@ import { VueFlow } from '@vue-flow/core'
const elements = ref([
{
id: '1',
position: {x: 50, y: 50},
position: { x: 50, y: 50 },
label: 'Node 1',
}
]);
@@ -77,7 +77,7 @@ onMounted(() => {
elements.value.push({
id: '2',
label: 'Node 2',
position: {x: 150, y: 50},
position: { x: 150, y: 50 },
})
})
</script>