Blame view

src/components/FlowChart/index.ts 203 Bytes
Vben authored
1
import type { App } from 'vue';
Vben authored
2
import flowChart from './src/index.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
  },
});