It's an extended version of the official highcharts wrapper: https://github.com/highcharts/highcharts-vue
It allows you to use highchart props and methods from your code.
The offcial wrapper https://github.com/highcharts/highcharts-vue now has support of using Highcharts instance from the code. Please use it instead.
this.$refs.chart.chart.showLoading('Loading...'); // or any other highcharts method or property
Using npm
$ npm i @tattdogg/vue-highcharts
import { Chart } from '@tattdogg/vue-highcharts'
components: {
highcharts: Chart
}
<highcharts :options="options" ref="chart" />
this.$refs.chart.instance.showLoading('Loading...'); // or any other highcharts method or property
TypeScript is supported.