@mozaic-ds/chart
Version:
<p align="center"> <img alt="ADEO Design system - Chart library" src="./.storybook/assets/adeo-design-system-chart-banner.svg" /> </p>
21 lines (17 loc) • 600 B
text/typescript
import type { App } from 'vue';
import * as Components from './components';
const MozaicChart = {
install: (app: App, options: {}) => {
Object.keys(Components).forEach((name) => {
// @ts-ignore
app.component(name, Components[name]);
});
}
};
export default MozaicChart;
export { BarChart } from './components/bar';
export { DoughnutChart } from './components/doughnut';
export { LineChart } from './components/line';
export { RadarChart } from './components/radar';
export { MixedBarLineChart } from './components/mixed';
export { BubbleChart } from './components/bubble';