Currently delving into Vue JS to enhance the interactivity of my django application, I am opting for the route of integrating Vue JS as components within my templates rather than going down the path of a Single Page Application (SPA). It's almost like replacing JQuery with Vue JS. Hence, I have decided to utilize the CDN version by including a script tag at the end of the body element.
However, I am encountering an issue when attempting to incorporate 3rd party components as most of them necessitate npm installation. I am hesitant about going that route and would rather keep things straightforward.
Hence, I am endeavoring to integrate 3rd party components using CDNs. For instance, I am exploring how to use this particular one: https://github.com/bliblidotcom/vue-rangedate-picker
Yet, I am uncertain about how to configure my existing components to leverage it!
Just to provide some context on my objective here - I have a component responsible for managing a search form and displaying data in a table format. I aim to embed a datepicker within my search form and link the selected dates to the parameters passed in my API calls.