Add Radar Chart component

This commit is contained in:
Jakub Juszczak
2016-07-03 10:31:35 +02:00
parent 65251700d7
commit ca1d884074
5 changed files with 84 additions and 6 deletions

View File

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