Add LineChart Example component

This commit is contained in:
Jakub Juszczak
2016-06-26 15:46:19 +02:00
parent fde877e49f
commit 5b704cc739
2 changed files with 19 additions and 1 deletions

View File

@@ -1,14 +1,16 @@
<template>
<div class="container">
<bar-example :width="100" :height="200" :player={wins:'12'} :opponent={wins:'23'}></bar-example>
<line-example></line-example>
</div>
</template>
<script>
import BarExample from './examples/BarExample'
import LineExample from './examples/LineExample'
export default {
components: { BarExample }
components: { BarExample, LineExample }
}
</script>