mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
20 lines
395 B
JavaScript
20 lines
395 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'
|
|
|
|
const VueCharts = {
|
|
Bar,
|
|
Doughnut,
|
|
Line,
|
|
Pie,
|
|
PolarArea,
|
|
Radar,
|
|
Bubble
|
|
}
|
|
|
|
module.exports = VueCharts
|