I'm currently working on a page for an older server-rendered project.
For one specific page, I want to incorporate some "dynamic" elements. I decided to import the vuejs CDN script and create an inline Vue object:
var v = new Vue(...
However, there is a .vue component that caught my eye, and I really want to include it on the page. The issue is, this component seems to require a WebPack import and build process to be added.
Is there a way to integrate this component into my HTML page without going through the WebPack build process? Can it be done?