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,20 @@
import PieChart from '../BaseCharts/Pie'
export default PieChart.extend({
mounted () {
this.renderChart({
labels: ['VueJs', 'EmberJs', 'ReactJs', 'AngularJs'],
datasets: [
{
backgroundColor: [
'#41B883',
'#E46651',
'#00D8FF',
'#DD1B16'
],
data: [40, 20, 80, 10]
}
]
})
}
})