[Vuejs]-Kendo UI and Vue.js

0👍

JavaScript is case sensitive. I use the ProvidePlugin to define some aliases:

new webpack.ProvidePlugin({
    "jQuery": "jquery",
    "$": "jquery",
    "window.jQuery": "jquery"
})
👤Joe

Leave a comment