Blame view

src/views/demo/comp/flow-chart/index.vue 518 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
17

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