111
wujingjing
2025-02-13 6ecbdc979ab030587bd32c2c6543eeff5464bbb9
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 };