🐛 Fix missing exports

This commit is contained in:
Jakub Juszczak
2017-07-05 21:04:10 +02:00
parent acb3d5c823
commit f04441ab36

View File

@@ -6,6 +6,7 @@ import Pie from './BaseCharts/Pie'
import PolarArea from './BaseCharts/PolarArea' import PolarArea from './BaseCharts/PolarArea'
import Radar from './BaseCharts/Radar' import Radar from './BaseCharts/Radar'
import Bubble from './BaseCharts/Bubble' import Bubble from './BaseCharts/Bubble'
import Scatter from './BaseCharts/Scatter'
import mixins from './mixins/index.js' import mixins from './mixins/index.js'
import npmCfg from '../package.json' import npmCfg from '../package.json'
@@ -19,6 +20,7 @@ const VueCharts = {
PolarArea, PolarArea,
Radar, Radar,
Bubble, Bubble,
Scatter,
mixins mixins
} }
@@ -34,5 +36,6 @@ export {
PolarArea, PolarArea,
Radar, Radar,
Bubble, Bubble,
Scatter,
mixins mixins
} }