Change example location to src folder for easier testing

This commit is contained in:
Jakub Juszczak
2016-09-08 13:06:36 +02:00
parent 9bcffae429
commit 377ae5e27a
8 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
import DoughnutChart from '../BaseCharts/Doughnut'
export default DoughnutChart.extend({
ready () {
this.render({
labels: ['VueJs', 'EmberJs', 'ReactJs', 'AngularJs'],
datasets: [
{
backgroundColor: [
'#41B883',
'#E46651',
'#00D8FF',
'#DD1B16'
],
data: [40, 20, 80, 10]
}
]
})
}
})