update(docs): Add all examples

This commit is contained in:
Braks
2021-11-06 08:54:35 +01:00
parent 61779638ac
commit e99dfc3dd2
54 changed files with 2582 additions and 285 deletions
+24
View File
@@ -0,0 +1,24 @@
<script lang="ts" setup>
import Flow from '../../components/Flow.vue'
</script>
<template>
<div class="vue-flow__example-multiflows flex-1">
<Flow />
<Flow />
</div>
</template>
<style>
.vue-flow__example-multiflows {
display: flex;
height: 100%;
}
.vue-flow__example-multiflows .vue-flow {
width: 100%;
height: 100%;
}
.vue-flow__example-multiflows .vue-flow:first-child {
border-right: 2px solid #333;
}
</style>