@@ -122,7 +122,7 @@ You can overwrite the default chart options. Just pass the options object as a s
122
122
import { Line } from ' vue-chartjs'
123
123
124
124
export default Line .extend ({
125
- props: [" data" , " options" ],
125
+ props: [' data' , ' options' ],
126
126
mounted () {
127
127
this .renderChart (this .data , this .options )
128
128
}
@@ -165,7 +165,7 @@ import { Line, mixins } from 'vue-chartjs'
165
165
166
166
export default Line .extend ({
167
167
mixins: [mixins .reactiveProp ],
168
- props: [" chartData" , " options" ],
168
+ props: [' chartData' , ' options' ],
169
169
mounted () {
170
170
this .renderChart (this .chartData , this .options )
171
171
}
@@ -183,7 +183,7 @@ import VueCharts from 'vue-chartjs'
183
183
184
184
export default VueCharts .Line .extend ({
185
185
mixins: [VueCharts .mixins .reactiveProp ],
186
- props: [" chartData" , " options" ],
186
+ props: [' chartData' , ' options' ],
187
187
mounted () {
188
188
this .renderChart (this .chartData , this .options )
189
189
}
@@ -196,7 +196,7 @@ import { Line, mixins } from 'vue-chartjs'
196
196
197
197
export default Line .extend ({
198
198
mixins: [mixins .reactiveProp ],
199
- props: [" chartData" , " options" ],
199
+ props: [' chartData' , ' options' ],
200
200
mounted () {
201
201
this .renderChart (this .chartData , this .options )
202
202
}
@@ -210,7 +210,7 @@ const { reactiveProp } = mixins
210
210
211
211
export default Line .extend ({
212
212
mixins: [reactiveProp],
213
- props: [" chartData" , " options" ],
213
+ props: [' chartData' , ' options' ],
214
214
mounted () {
215
215
this .renderChart (this .chartData , this .options )
216
216
}
0 commit comments