Hello World!

This commit is contained in:
Łukasz Holeczek
2017-08-16 12:12:02 +02:00
commit 15df4b91de
886 changed files with 62446 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
<template>
<div class="animated fadeIn">
<div class="card-columns cols-2">
<b-card header="Line Chart">
<div class="chart-wrapper">
<line-example/>
</div>
</b-card>
<b-card header="Bar Chart">
<div class="chart-wrapper">
<bar-example/>
</div>
</b-card>
<b-card header="Doughnut Chart">
<div class="chart-wrapper">
<doughnut-example/>
</div>
</b-card>
<b-card header="Radar Chart">
<div class="chart-wrapper">
<radar-example/>
</div>
</b-card>
<b-card header="Pie Chart">
<div class="chart-wrapper">
<pie-example/>
</div>
</b-card>
<b-card header="Polar Area Chart">
<div class="chart-wrapper">
<polar-area-example/>
</div>
</b-card>
</div>
</div>
</template>
<script>
import BarExample from './charts/BarExample'
import LineExample from './charts/LineExample'
import DoughnutExample from './charts/DoughnutExample'
import RadarExample from './charts/RadarExample'
import PieExample from './charts/PieExample'
import PolarAreaExample from './charts/PolarAreaExample'
export default {
name: 'charts',
components: {
BarExample,
LineExample,
DoughnutExample,
RadarExample,
PieExample,
PolarAreaExample
}
}
</script>