wujingjing
2025-02-13 4f03e6fb9f0fe11e6c191baed39190fdce307117
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 };