Move examples into src for better testing

This commit is contained in:
Jakub Juszczak
2016-09-23 12:49:09 +02:00
parent c0e93cd824
commit d7003306d1
7 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import LineChart from '../BaseCharts/Line'
export default LineChart.extend({
mounted () {
this.renderChart({
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [
{
label: 'Data One',
backgroundColor: '#f87979',
data: [40, 39, 10, 40, 39, 80, 40]
}
]
})
}
})