I have to include https://www.npmjs.com/package/vue2-daterange-picker in my project made with Kendo, Vue, .Net, Angular and jQuery(Yes it's a lot).
<script src="https://unpkg.com/vue2-daterange-picker@0.5.1/dist/vue2-daterange-picker.umd.min.js"></script>
I am including it via this in my scripts and when I try to use, it throws error Uncaught ReferenceError: DateRangePicker is not defined.
I have even declared it in my js file
Vue.component('date-range-picker', DateRangePicker)
How to resolve this?
I am also using bundles.Add(new ScriptBundle())
but I am unable to add the dependency through that also.