Skip to content

Commit 086fb1d

Browse files
committed
✨ Add BubbleExample to app.vue
1 parent f241613 commit 086fb1d

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ export default {
111111

112112
![Bubble](assets/bubble.png)
113113

114-
115114
## Build Setup
116115

117116
``` bash

examples/App.vue

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<pie-example></pie-example>
77
<radar-example></radar-example>
88
<polar-area-example></polar-area-example>
9+
<bubble-example></bubble-example>
910
</div>
1011
</template>
1112

@@ -16,9 +17,18 @@
1617
import PieExample from './examples/PieExample'
1718
import RadarExample from './examples/RadarExample'
1819
import PolarAreaExample from './examples/PolarAreaExample'
20+
import BubbleExample from './examples/BubbleExample'
1921
2022
export default {
21-
components: { BarExample, LineExample, DoughnutExample, PieExample, RadarExample, PolarAreaExample }
23+
components: {
24+
BarExample,
25+
LineExample,
26+
DoughnutExample,
27+
PieExample,
28+
RadarExample,
29+
PolarAreaExample,
30+
BubbleExample
31+
}
2232
}
2333
</script>
2434

0 commit comments

Comments
 (0)