Closed breathcold closed 5 years ago
file----> highcharts-vue.d.ts export class Chart extends _Vue { props: ChartPropsObject; template: string; watch: ChartWatchObject; beforeDestroy: () => void; mounted: () => void; render: (createElement) => VNode; }
i changed it like this: export class Chart extends _Vue { props: ChartPropsObject; template: string; watch: ChartWatchObject; beforeDestroy: () => void; mounted: () => void; render: (createElement: Element) => VNode; }
and then works ! can update to fix this bug?
Hi @breathcold ,
It is already fixed in https://github.com/highcharts/highcharts-vue/pull/82, and will be published on npm this week.
Kind regards!
file----> highcharts-vue.d.ts export class Chart extends _Vue { props: ChartPropsObject; template: string; watch: ChartWatchObject; beforeDestroy: () => void; mounted: () => void; render: (createElement) => VNode; }
i changed it like this: export class Chart extends _Vue { props: ChartPropsObject; template: string; watch: ChartWatchObject; beforeDestroy: () => void; mounted: () => void; render: (createElement: Element) => VNode; }
and then works ! can update to fix this bug?