From c21cf2f3aca187f9186ffb439f659e6df57a8da3 Mon Sep 17 00:00:00 2001 From: Jakub Juszczak Date: Sun, 2 Oct 2016 18:26:38 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20export=20for=20mixins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.js | 6 +++++- test/unit/specs/mixins/reactiveData.js | 0 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 test/unit/specs/mixins/reactiveData.js diff --git a/src/index.js b/src/index.js index 7740349..158c938 100644 --- a/src/index.js +++ b/src/index.js @@ -5,6 +5,8 @@ import Pie from './BaseCharts/Pie' import PolarArea from './BaseCharts/PolarArea' import Radar from './BaseCharts/Radar' import Bubble from './BaseCharts/Bubble' +import reactiveProp from '../mixins/reactiveProp' +import reactiveData from '../mixins/reactiveData' const VueCharts = { Bar, @@ -13,7 +15,9 @@ const VueCharts = { Pie, PolarArea, Radar, - Bubble + Bubble, + reactiveProp, + reactiveData } module.exports = VueCharts diff --git a/test/unit/specs/mixins/reactiveData.js b/test/unit/specs/mixins/reactiveData.js new file mode 100644 index 0000000..e69de29