I'm trying to include a script file in Webpack, but when I run it, I encounter an error: Uncaught ReferenceError: Vue is not defined. How can I resolve this issue in my Main.js file?
import Vue from 'vue';
import nqt from './nqt.js';
//Vue.use(nqt)
In my nqt.js file:
vm = new Vue();
console.log(vm);
Thank you for taking the time to read this!