Add BubbleExample to app.vue

This commit is contained in:
Jakub Juszczak
2016-09-08 12:12:15 +02:00
parent f241613107
commit 086fb1d4e9
2 changed files with 11 additions and 2 deletions

View File

@@ -111,7 +111,6 @@ export default {
![Bubble](assets/bubble.png) ![Bubble](assets/bubble.png)
## Build Setup ## Build Setup
``` bash ``` bash

View File

@@ -6,6 +6,7 @@
<pie-example></pie-example> <pie-example></pie-example>
<radar-example></radar-example> <radar-example></radar-example>
<polar-area-example></polar-area-example> <polar-area-example></polar-area-example>
<bubble-example></bubble-example>
</div> </div>
</template> </template>
@@ -16,9 +17,18 @@
import PieExample from './examples/PieExample' import PieExample from './examples/PieExample'
import RadarExample from './examples/RadarExample' import RadarExample from './examples/RadarExample'
import PolarAreaExample from './examples/PolarAreaExample' import PolarAreaExample from './examples/PolarAreaExample'
import BubbleExample from './examples/BubbleExample'
export default { export default {
components: { BarExample, LineExample, DoughnutExample, PieExample, RadarExample, PolarAreaExample } components: {
BarExample,
LineExample,
DoughnutExample,
PieExample,
RadarExample,
PolarAreaExample,
BubbleExample
}
} }
</script> </script>