1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <template>
| <PageWrapper
| title="流程图"
| content="简单流程图示例,具体功能需要自己完善"
| contentFullHeight
| fixedHeight
| >
| <FlowChart :data="demoData" />
| </PageWrapper>
| </template>
|
| <script lang="ts" setup>
| import { FlowChart } from '@/components/FlowChart';
| import { PageWrapper } from '@/components/Page';
| import demoData from './dataTurbo.json';
| </script>
|
|