tanghaolin
7 天以前 9bee4f48db0c5b99b5683545fac737856d94d082
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 };