I am creating a page for a legacy server rendered project.
On one of its page I need to add some "dynamic". Then i import the vuejs CDN script and created a inline vue object
var v = new Vue(...
But there is a .vue component that I like very much and I would like to add it to the page. But it seems that this component can only be added by a WebPack import and build process.
How can I use this component in my html page without WebPack build process? Is that possible?