wujingjing
2025-03-06 34f1a1d2b079b794982f9b93fbeacfdab64e1609
1
2
3
4
5
6
7
8
9
10
import type { App, Plugin } from 'vue';
import AChart from './src/chart.vue';
 
export const AChartPlugin: Plugin = {
    install(app: App) {
        app.component('AChart', AChart);
    },
};
 
export { AChart };