Files
vue-chartjs/src/index.js
Juan Carlos Alonso 3785e73b43 Added bubble chart type
2016-09-07 22:50:18 +01:00

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