We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d6e375 + d2f2315 commit 6732907Copy full SHA for 6732907
README.md
@@ -68,7 +68,7 @@ You can overwrite the default chart options. Just pass the options object as a s
68
import { Line } from 'vue-chartjs'
69
70
export default Line.extend({
71
- props: [data, options],
+ props: ["data", "options"],
72
mounted () {
73
this.renderChart(this.data, this.options)
74
}
@@ -107,8 +107,8 @@ The mixins automatically create `chartData` as a prop or data. And add a watcher
107
import { Line, reactiveProp } from 'vue-chartjs'
108
109
110
- mixins: [reactiveProp]
111
- props: [chartData, options],
+ mixins: [reactiveProp],
+ props: ["chartData", "options"],
112
113
this.renderChart(this.chartData, this.options)
114
0 commit comments