Blame view

src/views/demo/comp/flow-chart/index.vue 519 Bytes
1
<template>
Vben authored
2
3
4
5
6
7
8
9
  <PageWrapper
    title="流程图"
    content="简单流程图示例,具体功能需要自己完善"
    contentFullHeight
    fixedHeight
  >
    <FlowChart :data="demoData" />
  </PageWrapper>
10
11
12
</template>

<script lang="ts">
Vben authored
13
14
  import { FlowChart } from '/@/components/FlowChart';
  import { PageWrapper } from '/@/components/Page';
15
16

  import demoData from './dataTurbo.json';
17
18
  export default {
Vben authored
19
    components: { FlowChart, PageWrapper },
20
    setup() {
Vben authored
21
      return { demoData };
22
23
24
    },
  };
</script>