condtion tree

This commit is contained in:
2023-12-25 17:07:40 +09:00
parent ea6e603036
commit 6e75a2a524
2 changed files with 213 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<template>
<q-page>
<div class="flowchart">
<node-condition></node-condition>
</div>
</q-page>
</template>
<script setup lang="ts">
import NodeCondition from 'src/components/main/NodeCondition.vue';
</script>
<style lang="scss">
.flowchart {
padding-top: 10px;
}
</style>