Skip to content

Commit 7b24628

Browse files
committed
0.0.8
1 parent d29c6e0 commit 7b24628

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/vue-highcharts.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function create(tagName, Highcharts) {
5151
}
5252
: { options: { type: Object, required: true } },
5353
methods: {
54-
_init: function() {
54+
_initChart: function() {
5555
this._renderChart();
5656
if (isRenderer) {
5757
this.$watch('width', this._renderChart);
@@ -70,7 +70,7 @@ function create(tagName, Highcharts) {
7070
}
7171
},
7272
mounted: function() {
73-
this._init();
73+
this._initChart();
7474
},
7575
beforeDestroy: function() {
7676
if (isRenderer) {
@@ -85,7 +85,7 @@ function create(tagName, Highcharts) {
8585
},
8686
// compat Vue v1.x
8787
ready: function() {
88-
this._init();
88+
this._initChart();
8989
}
9090
};
9191
}

dist/vue-highcharts.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-highcharts",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Highcharts component for Vue",
55
"main": "dist/vue-highcharts.js",
66
"jsnext:main": "src/index.js",

0 commit comments

Comments
 (0)