From 086fb1d4e97ac71bd6f113d4351b1e9373e7134b Mon Sep 17 00:00:00 2001 From: Jakub Juszczak Date: Thu, 8 Sep 2016 12:12:15 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20BubbleExample=20to=20app.vue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 - examples/App.vue | 12 +++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a47399e..dd3624f 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,6 @@ export default { ![Bubble](assets/bubble.png) - ## Build Setup ``` bash diff --git a/examples/App.vue b/examples/App.vue index 73adf07..c324c97 100644 --- a/examples/App.vue +++ b/examples/App.vue @@ -6,6 +6,7 @@ + @@ -16,9 +17,18 @@ import PieExample from './examples/PieExample' import RadarExample from './examples/RadarExample' import PolarAreaExample from './examples/PolarAreaExample' + import BubbleExample from './examples/BubbleExample' export default { - components: { BarExample, LineExample, DoughnutExample, PieExample, RadarExample, PolarAreaExample } + components: { + BarExample, + LineExample, + DoughnutExample, + PieExample, + RadarExample, + PolarAreaExample, + BubbleExample + } }