Blame view

src/components/FlowChart/index.ts 207 Bytes
Vben authored
1
import type { App } from 'vue';
2
import flowChart from './src/FlowChart.vue';
3
Vben authored
4
export const FlowChart = Object.assign(flowChart, {
5
  install(app: App) {
Vben authored
6
    app.component(flowChart.name, flowChart);
7
8
  },
});