I'm currently building my app with the Vue-cli webpack template and I've had trouble getting all elements to load initially on Vue template pages using other libraries (JQuery, Video.js). They only show when I refresh. How do you handle this?
And pardon me if the solution is obvious, as I'm very new to development and front end JS frameworks!
Thanks everyone!
Moritz Riede
UI/UX Design, Creative Direction
Either use Vue, or use jQuery. Both libraries aren't aware of each other, and they are responsible for similar things (handling UI events, manipulating the Document Object Model, etc.). Using them both side-by-side is going to be increasingly chaotic as your app grows in size.
Have you received errors in your Webpack console window, when loading the elements seemed to fail? If yes, would you mind sharing those with us?