vue-vben-admin/src/components/FlowChart/index.ts

9 lines
207 B
TypeScript

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);
},
});