[Vuejs]-What to do to setup a ASP.NET MVC 5 application to work with PrimeVue components?

0👍

After some deeper reading I could understand that I can simply add some CSS and JS files publicaly available:

<link href="https://unpkg.com/primevue/resources/themes/nova-light/theme.css " rel="stylesheet">
<link href="https://unpkg.com/primevue/resources/primevue.min.css " rel="stylesheet">
<link href="https://unpkg.com/primeicons/primeicons.css " rel="stylesheet">
<script src="https://unpkg.com/primevue/components/dropdown/dropdown.umd.min.js"></script>

So I simply bundled those CSS and JS files in my app and registered the component in Vue.

Leave a comment