Hello!
I want to integrate Webix widget to my vue-based app, but when i import webix and vue-webix to my single-component vue component i got an error:
Uncaught ReferenceError: webix is not defined
webix.protoUI({
name:“vue”,
…
I found same problem on this forum but there is no answer since 2018.
Can you please help me and explain what is the problem? I use webpack
(
“dependencies”: {
“vue”: “^2.6.12”,
“webix”: “^8.1.0”,
“vue-webix”: “^1.3.0”
},
)
importing like this:
import * as webix from "webix" import 'vue-webix' export default { ...