wujingjing
2025-02-12 9b3c556251698578e0f43e4d4d82f72d22a757bd
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 };