Vben
authored
|
1
|
import type { App } from 'vue';
|
vben
authored
|
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
|
},
});
|