From a7f9d0eb5deac5277a429ae610b8c3be04b29dfd Mon Sep 17 00:00:00 2001 From: takanakahiko Date: Mon, 22 Oct 2018 16:36:06 +0900 Subject: [PATCH] chore(docs): Remove unnecessary back quote (#427) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4bf032c4..9b8e6cb5 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ Both are included in the `mixins` module. The mixins automatically create `chartData` as a prop or data. And add a watcher. If data has changed, the chart will update. However, keep in mind the limitations of vue and javascript for mutations on arrays and objects. **It is important that you pass your options in a local variable named `options`!** -The reason is that if the mixin re-renders the chart it calls `this.renderChart(this.chartData, this.options`)` so don't pass in the options object directly or it will be ignored. +The reason is that if the mixin re-renders the chart it calls `this.renderChart(this.chartData, this.options)` so don't pass in the options object directly or it will be ignored. More info [here](http://vue-chartjs.org/#/home?id=reactive-data)