Skip to content

Commit

Permalink
chore(docs): Add missing commas in example snippet (apertureless#423)
Browse files Browse the repository at this point in the history
Just a quick fix in a snippet
  • Loading branch information
zupolgec authored and apertureless committed Oct 22, 2018
1 parent bbd8588 commit f04a0ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ import { Line } from 'vue-chartjs'

export default {
extends: Line,
props: ['datasets', 'options']
props: ['datasets', 'options'],
data: () => ({
htmlLegend: null
})
}),
mounted () {
this.renderChart(this.datasets, this.options)
this.htmlLegend = this.generateLegend()
Expand Down

0 comments on commit f04a0ec

Please sign in to comment.