webix not defined with vue-webix

Hi,

The newer version is giving an error:

"Uncaught ReferenceError: webix is not defined"

error on vue-webix/index.js:
webix.protoUI({
	name:"vue",

It works fine with v.5.4.0

Thanks

How you are importing webix into the project?

If you have used

import "webix";

change it to

import * as webix from "webix";

Starting from 6.0, importing webix will not create a global object. You can import the whole library or only necessary methods

yes, I was trying
import “webix”

will change it and give a try today
Thanks

Hello,

I am stuck aswell with this,

I am trying to do :
import * as webix from “webix”;
import ‘vue-webix’

But i got the same error. Any idea ? :slight_smile:

Thanks