index.ts 207 Bytes
import type { App } from 'vue';
import flowChart from './src/FlowChart.vue';

export const FlowChart = Object.assign(flowChart, {
  install(app: App) {
    app.component(flowChart.name, flowChart);
  },
});