@@ -122,7 +122,7 @@ You can overwrite the default chart options. Just pass the options object as a s
122122import { Line } from ' vue-chartjs'
123123
124124export default Line .extend ({
125- props: [" data" , " options" ],
125+ props: [' data' , ' options' ],
126126 mounted () {
127127 this .renderChart (this .data , this .options )
128128 }
@@ -165,7 +165,7 @@ import { Line, mixins } from 'vue-chartjs'
165165
166166export default Line .extend ({
167167 mixins: [mixins .reactiveProp ],
168- props: [" chartData" , " options" ],
168+ props: [' chartData' , ' options' ],
169169 mounted () {
170170 this .renderChart (this .chartData , this .options )
171171 }
@@ -183,7 +183,7 @@ import VueCharts from 'vue-chartjs'
183183
184184export default VueCharts .Line .extend ({
185185 mixins: [VueCharts .mixins .reactiveProp ],
186- props: [" chartData" , " options" ],
186+ props: [' chartData' , ' options' ],
187187 mounted () {
188188 this .renderChart (this .chartData , this .options )
189189 }
@@ -196,7 +196,7 @@ import { Line, mixins } from 'vue-chartjs'
196196
197197export default Line .extend ({
198198 mixins: [mixins .reactiveProp ],
199- props: [" chartData" , " options" ],
199+ props: [' chartData' , ' options' ],
200200 mounted () {
201201 this .renderChart (this .chartData , this .options )
202202 }
@@ -210,7 +210,7 @@ const { reactiveProp } = mixins
210210
211211export default Line .extend ({
212212 mixins: [reactiveProp],
213- props: [" chartData" , " options" ],
213+ props: [' chartData' , ' options' ],
214214 mounted () {
215215 this .renderChart (this .chartData , this .options )
216216 }
0 commit comments