mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
The lib version is also defined in the webpack banner plugin, so actually there is no need to include it into the lib object. Closes issue #310
43 lines
444 B
JavaScript
43 lines
444 B
JavaScript
import mixins from './mixins/index.js'
|
|
|
|
import {
|
|
Bar,
|
|
HorizontalBar,
|
|
Doughnut,
|
|
Line,
|
|
Pie,
|
|
PolarArea,
|
|
Radar,
|
|
Bubble,
|
|
Scatter
|
|
} from './BaseCharts'
|
|
|
|
const VueCharts = {
|
|
Bar,
|
|
HorizontalBar,
|
|
Doughnut,
|
|
Line,
|
|
Pie,
|
|
PolarArea,
|
|
Radar,
|
|
Bubble,
|
|
Scatter,
|
|
mixins
|
|
}
|
|
|
|
export default VueCharts
|
|
|
|
export {
|
|
VueCharts,
|
|
Bar,
|
|
HorizontalBar,
|
|
Doughnut,
|
|
Line,
|
|
Pie,
|
|
PolarArea,
|
|
Radar,
|
|
Bubble,
|
|
Scatter,
|
|
mixins
|
|
}
|