@dobbel
Many thanks, you have helped me a lot!
My code was almost exactly the same as yours, but there were 2 problems in my code:
1# I did not copy all the code from then demo exactly, I wrote the imports manually:
import { JqxPivotGrid, JqxPivotDesigner } from 'jqwidgets-scripts'
but the correct way is (as you wrote):
import JqxPivotGrid from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpivotgrid.vue'
import JqxPivotDesigner from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpivotdesigner.vue'
My bad!
2# Then the linter still complained about the code let dataAdapter = new jqx.dataAdapter(source)
:
89:33 error A constructor name should not start with a lowercase letter new-cap
89:33 error 'jqx' is not defined no-undef
I have added the following to the linter rules:
'new-cap': 'off',
'no-undef': 'off',
And now it works! Thank you again!
Ales