Add Pie Chart component

This commit is contained in:
Jakub Juszczak
2016-07-01 19:02:41 +02:00
parent 84ae683bfa
commit 65251700d7
5 changed files with 69 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
<bar-example></bar-example>
<line-example></line-example>
<doughnut-example></doughnut-example>
<pie-example></pie-example>
</div>
</template>
@@ -10,9 +11,10 @@
import BarExample from './examples/BarExample'
import LineExample from './examples/LineExample'
import DoughnutExample from './examples/DoughnutExample'
import PieExample from './examples/PieExample'
export default {
components: { BarExample, LineExample, DoughnutExample }
components: { BarExample, LineExample, DoughnutExample, PieExample }
}
</script>