mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
34 lines
542 B
JavaScript
34 lines
542 B
JavaScript
import Bar from './BaseCharts/Bar'
|
|
import Doughnut from './BaseCharts/Doughnut'
|
|
import Line from './BaseCharts/Line'
|
|
import Pie from './BaseCharts/Pie'
|
|
import PolarArea from './BaseCharts/PolarArea'
|
|
import Radar from './BaseCharts/Radar'
|
|
import Bubble from './BaseCharts/Bubble'
|
|
import mixins from './mixins/index.js'
|
|
|
|
const VueCharts = {
|
|
Bar,
|
|
Doughnut,
|
|
Line,
|
|
Pie,
|
|
PolarArea,
|
|
Radar,
|
|
Bubble,
|
|
mixins
|
|
}
|
|
|
|
export default VueCharts
|
|
|
|
export {
|
|
VueCharts,
|
|
Bar,
|
|
Doughnut,
|
|
Line,
|
|
Pie,
|
|
PolarArea,
|
|
Radar,
|
|
Bubble,
|
|
mixins
|
|
}
|