Add reactiveData Example

This commit is contained in:
Jakub Juszczak
2016-10-02 10:34:06 +02:00
parent a7194b990f
commit 59cc74a00d

View File

@@ -1,6 +1,7 @@
<template> <template>
<div class="container"> <div class="container">
<bar-example></bar-example> <bar-example></bar-example>
<reactive-example></reactive-example>
<line-example></line-example> <line-example></line-example>
<doughnut-example></doughnut-example> <doughnut-example></doughnut-example>
<pie-example></pie-example> <pie-example></pie-example>
@@ -18,9 +19,10 @@
import RadarExample from './RadarExample' import RadarExample from './RadarExample'
import PolarAreaExample from './PolarAreaExample' import PolarAreaExample from './PolarAreaExample'
import BubbleExample from './BubbleExample' import BubbleExample from './BubbleExample'
import ReactiveExample from './ReactiveExample'
export default { export default {
components: { BarExample, LineExample, DoughnutExample, PieExample, RadarExample, PolarAreaExample, BubbleExample } components: { BarExample, LineExample, DoughnutExample, PieExample, RadarExample, PolarAreaExample, BubbleExample, ReactiveExample }
} }
</script> </script>