I am using the Nuxt framework and have installed the highcharts-vue package as well as the main highcharts. It looks like this below:
import Vue from 'vue'
import Highcharts from 'highcharts'
import highchartsMore from 'highcharts/highcharts-more'
import HighchartsVue from 'highcharts-vue'
highchartsMore(Highcharts)
Vue.use(HighchartsVue)
I am using the Nuxt framework and have installed the highcharts-vue package as well as the main highcharts. It looks like this below:
Package.json looks like this:
However when I load the app it gives this: TypeError: Cannot read property 'parts/Globals.js' of undefined
The library works fine when I don't include the highchartsMore package. Do I need to change the versions to get this to work properly?