From ecdb98c4c8f14a3f9c62e7ca430f23ad9cca18d6 Mon Sep 17 00:00:00 2001 From: Jakub Juszczak Date: Sun, 2 Oct 2016 18:30:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20paths?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/index.js b/src/index.js index 158c938..2e48179 100644 --- a/src/index.js +++ b/src/index.js @@ -5,8 +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' +import reactiveProp from './mixins/reactiveProp' +import reactiveData from './mixins/reactiveData' const VueCharts = { Bar, @@ -19,5 +19,3 @@ const VueCharts = { reactiveProp, reactiveData } - -module.exports = VueCharts