File tree Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ import Pie from './BaseCharts/Pie'
5
5
import PolarArea from './BaseCharts/PolarArea'
6
6
import Radar from './BaseCharts/Radar'
7
7
import Bubble from './BaseCharts/Bubble'
8
- import reactiveProp from './mixins/reactiveProp'
9
- import reactiveData from './mixins/reactiveData'
8
+ import mixins from './mixins/index.js'
10
9
11
10
const VueCharts = {
12
11
Bar,
@@ -16,8 +15,19 @@ const VueCharts = {
16
15
PolarArea,
17
16
Radar,
18
17
Bubble,
19
- reactiveProp,
20
- reactiveData
18
+ mixins
21
19
}
22
20
23
- module . exports = VueCharts
21
+ export default VueCharts
22
+
23
+ export {
24
+ VueCharts ,
25
+ Bar ,
26
+ Doughnut ,
27
+ Line ,
28
+ Pie ,
29
+ PolarArea ,
30
+ Radar ,
31
+ Bubble ,
32
+ mixins
33
+ }
Original file line number Diff line number Diff line change
1
+ import reactiveData from './reactiveData.js'
2
+ import reactiveProp from './reactiveProp.js'
3
+
4
+ export default {
5
+ reactiveData,
6
+ reactiveProp
7
+ }
You can’t perform that action at this time.
0 commit comments